/* 
   Shared Stylesheet for dr-seyidov.de subpages
   Clean, premium dark aesthetics matching the main design.
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #171310;
  --card: #201A16;
  --line: #2E261F;
  --muted: #B3A493;
  --gold: #C8A96A;
  --gold-hover: #e5c380;
  --white: #F4EDE3;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: var(--gold);
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  background: rgba(23, 19, 16, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem clamp(1.2rem, 4vw, 4rem);
  z-index: 99;
}

.brand {
  font-family: var(--serif);
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand span {
  color: var(--gold);
}

.navlinks {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.navlinks a {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

.navlinks a:hover, .navlinks a.active {
  color: var(--white);
}

/* ── HERO ── */
.hero {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.2rem, 6vw, 6rem) 3rem;
  max-width: 1180px;
  margin: auto;
}

.eyebrow {
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7.4rem);
  font-weight: 300;
  line-height: .95;
  max-width: 980px;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 780px;
  margin-top: 1.5rem;
}

/* ── GRID & PANELS ── */
.grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem clamp(1.2rem, 6vw, 6rem) 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.panel {
  border: 1px solid var(--line);
  background: var(--card);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.panel h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.2rem;
  margin-bottom: .8rem;
}

.panel p, .panel li {
  color: var(--muted);
}

ul {
  padding-left: 1.2rem;
  margin-top: .8rem;
}

.wide {
  grid-column: 1 / -1;
}

/* ── BUTTONS & LINKS ── */
.cta {
  display: inline-flex;
  margin-top: 1.4rem;
  background: var(--gold);
  color: #171310;
  text-decoration: none;
  padding: .8rem 1.2rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  transition: background-color 0.2s;
}

.cta:hover {
  background: var(--gold-hover);
  color: #171310;
}

.back {
  color: var(--muted);
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
}

.back:hover {
  color: var(--white);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 2rem clamp(1.2rem, 4vw, 4rem);
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .footer-links {
  display: flex;
  gap: 1.5rem;
}

footer .footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
}

footer .footer-links a:hover {
  color: var(--white);
}

/* ── PROFILE PAGE (dr-imamali-seyidov.html) ── */
.profile {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2rem clamp(1.2rem, 6vw, 6rem) 5rem;
}

.profile .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
  padding: 0;
  max-width: 100%;
}

.content {
  border: 1px solid var(--line);
  background: var(--card);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.content h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 2rem 0 .8rem;
}

.content h2:first-child {
  margin-top: 0;
}

.content p, .content li {
  color: var(--muted);
  font-size: .98rem;
}

.content p+p {
  margin-top: 1rem;
}

.content ul {
  padding-left: 1.2rem;
  margin: 1rem 0;
}

.side {
  border: 1px solid var(--line);
  padding: 1.4rem;
  background: #1C1713;
  position: sticky;
  top: 6rem;
}

.side h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.8rem;
  margin-bottom: .8rem;
}

.side p {
  color: var(--muted);
  font-size: .9rem;
}

.fact {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 1rem;
}

.fact strong {
  display: block;
  color: var(--gold);
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.fact p {
  color: var(--muted);
  font-size: .9rem;
}

/* ── ARTICLE / RATGEBER PAGE (botox-frankfurt-ratgeber.html) ── */
.article {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem clamp(1.2rem, 6vw, 6rem) 5rem;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: start;
}

/* ── PREISE ── */
.preisrow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}

.preisrow:last-of-type {
  border-bottom: none;
}

.preisrow .name {
  color: var(--muted);
  font-size: .95rem;
}

.preisrow .name small {
  display: block;
  font-size: .78rem;
  opacity: .75;
  margin-top: .15rem;
}

.preisrow .preis {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  white-space: nowrap;
}

.goae {
  margin-top: 1.2rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .profile .grid, .article-grid {
    grid-template-columns: 1fr;
  }
  .side {
    position: static;
  }
  h1 {
    font-size: 3.1rem;
  }
}

@media (max-width: 760px) {
  .grid {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
  .navlinks {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  h1 {
    font-size: 3.2rem;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
