/* fekrtany.com - reproduces the original look:
   Amiri, text #154F74, outlined buttons #0c71c3 r10px, marble background,
   wave divider and dark blue footer. */

:root {
  --ink:     #154f74;   /* body text and footer background on the original */
  --line:    #0c71c3;   /* button borders and wave fill */
  --line-lt: #7fb4e0;
  --white:   #ffffff;
  --wrap:    1100px;
  --font: 'Amiri', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: #fff url('/assets/background.jpg') center top / cover fixed no-repeat;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

h1, h2, h3 { color: var(--ink); font-weight: 700; line-height: 1.5; margin: 0 0 16px; }
h1 { font-size: clamp(1.6rem, 3.4vw, 2.1rem); }
h2 { font-size: clamp(1.3rem, 2.6vw, 1.6rem); }
h3 { font-size: 1.12rem; }
p, li { margin: 0 0 14px; }
a { color: var(--line); }

.skip-link { position: absolute; right: -9999px; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 99; }
.skip-link:focus { right: 0; }

/* ---------- header ---------- */
.site-header { background: rgba(255,255,255,.82); border-bottom: 1px solid rgba(12,113,195,.18); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 22px; flex-wrap: wrap; }
.avatar img { width: 62px; height: 62px; border-radius: 50%; display: block; border: 2px solid var(--line); }
.nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav a { text-decoration: none; color: var(--ink); font-size: 1.05rem; padding-bottom: 3px; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--line); border-bottom-color: var(--line); }

/* ---------- homepage ---------- */
.home-top { padding: 46px 0 10px; }
.home-grid { display: grid; gap: 34px; align-items: start; }
@media (min-width: 900px) { .home-grid { grid-template-columns: 1fr 1fr; } }

.portrait img {
  width: 100%; height: auto; display: block;
  border: 6px solid #f0c987;           /* the warm frame on the original */
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
}

/* the outlined link buttons that make up the whole homepage */
.linkbtn {
  display: flex; align-items: center; justify-content: center;
  text-align: center; text-decoration: none;
  color: var(--ink); font-size: 1.25rem; line-height: 1.5;
  background: rgba(255,255,255,.55);
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 22px 18px;
  min-height: 86px;
  transition: background .15s ease, color .15s ease;
}
.linkbtn:hover { background: var(--line); color: #fff; }

.btn-stack { display: grid; gap: 16px; }
.btn-pairs { display: grid; gap: 16px; padding: 34px 0 60px; }
@media (min-width: 900px) { .btn-pairs { grid-template-columns: 1fr 1fr; } }

/* ---------- inner pages ---------- */
.page { padding: 40px 0 60px; }
.page-body { background: rgba(255,255,255,.78); border-radius: 14px; padding: 30px 32px; max-width: 80ch; margin-inline: auto; }
.page-body ul { padding-inline-start: 22px; }
.notice { border: 2px solid var(--line); border-radius: 10px; padding: 18px 22px; background: rgba(255,255,255,.7); }
.email { font-weight: 700; white-space: nowrap; direction: ltr; unicode-bidi: embed; display: inline-block; }
.playlist-link { display: inline-block; border: 2px solid var(--line); border-radius: 10px; padding: 10px 20px; text-decoration: none; }
.playlist-link:hover { background: var(--line); color: #fff; }

/* ---------- wave divider + footer ---------- */
.wave {
  height: 100px;
  background: url('/assets/wave.svg') center bottom / 100% 100px no-repeat;
}
.site-footer { background: var(--ink); color: #dce8f1; padding: 8px 0 34px; }
.site-footer a { color: #fff; }
.disclaimer {
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px;
  padding: 20px 26px;
  margin: 0 0 24px;
}
.disclaimer p { margin: 0; font-size: .98rem; line-height: 1.9; }
.footer-links { list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.contact-line { margin: 0 0 12px; }
.site-footer .email { color: #fff; }
.copy { margin: 0; font-size: .86rem; color: #a9c4d8; }
