/* =========================================================
   melanie-foellmer.de — styles.css (FINAL, ruhig & stimmig)
   ========================================================= */

:root{
  --bg:#fbfbf9;f
  --white:#ffffff;
  --text:#111111;
  --muted:rgba(0,0,0,.6);

  --gold:#b08a45;
  --gold-soft:rgba(176,138,69,.10);
  --gold-border:rgba(176,138,69,.22);

  --border:rgba(0,0,0,.08);
  --shadow:0 18px 45px rgba(0,0,0,.04);

  --radius:22px;
  --container:1080px;
}

/* ---------- Reset ---------- */
*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height:1.75;
}
img{
  display:block;
  max-width:100%;
  height:auto;
}
a{
  color:inherit;
  text-decoration:none;
}

/* ---------- Layout ---------- */
.container{
  width:min(100% - 44px, var(--container));
  margin:0 auto;
}
.section{ padding:64px 0; }
@media (max-width:720px){
  .container{ width:min(100% - 28px, var(--container)); }
  .section{ padding:44px 0; }
}

/* ---------- Typografie ---------- */
.h1{
  font-size:clamp(34px,4.2vw,54px);
  line-height:1.08;
  margin:0 0 14px;
  font-weight:600;
}
.kicker{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
  margin:0 0 10px;
}

/* ---------- Header ---------- */
.site-header{
  background:rgba(251,251,249,.95);
  border-bottom:1px solid rgba(0,0,0,.06);
  position:relative;
  z-index:2000;
}
.header-inner{
  width:min(100% - 44px, var(--container));
  margin:0 auto;
  padding:18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* 🔴 LOGO – JETZT SICHTBAR */
.brand-logo{
  height:95px;        /* ← bewusst größer */
  width:auto;
}
@media (max-width:720px){
  .brand-logo{
    height:85px;
  }
}

/* ---------- Navigation ---------- */
.nav-list{
  list-style:none;
  display:flex;
  align-items:center;
  gap:18px;
  margin:0;
  padding:0;
}
.nav-item{ position:relative; }

.nav-link{
  padding:9px 10px;
  border-radius:999px;
  font-size:14px;
  color:rgba(0,0,0,.75);
}
.nav-link:hover{
  background:rgba(0,0,0,.04);
}
.nav-link.is-active{
  background:var(--gold-soft);
  border:1px solid var(--gold-border);
}

/* ---------- Dropdown ---------- */
.nav-item.has-dropdown{ position:relative; }

.dropdown{
  position:absolute;
  top:100%;
  right:0;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:var(--shadow);
  list-style:none;
  padding:8px;
  min-width:180px;

  opacity:0;
  visibility:hidden;
  pointer-events:none;
  z-index:9999;
}
.dropdown::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-10px;
  height:10px;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.dropdown-link{
  display:block;
  padding:10px 12px;
  border-radius:12px;
}
.dropdown-link:hover{
  background:var(--gold-soft);
}

/* ---------- Startseite ---------- */
.intro-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:48px;
  align-items:center;
}
.intro-text p{
  margin:0 0 18px 0;
  max-width:70ch;
}
.intro-image{
  display:flex;
  justify-content:flex-end;
}
.intro-image img{
  max-width:320px;
  width:100%;
  border-radius:22px;
  box-shadow:var(--shadow);
}
@media (max-width:900px){
  .nav-list{
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end;
  }
  .intro-grid{
    grid-template-columns:1fr;
    gap:22px;
  }
  .intro-image{
    justify-content:center;
  }
  .intro-image img{
    max-width:260px;
  }
}

/* ---------- Footer ---------- */
.site-footer{
  border-top:1px solid rgba(0,0,0,.06);
  padding:42px 0;
  font-size:14px;
  color:var(--muted);
}
.site-footer a:hover{
  color:rgba(0,0,0,.85);
}
.sep{
  margin:0 8px;
  color:rgba(0,0,0,.35);
}
/* ================================
   HARMONISCHES MENÜ (goldene Boxen)
   ================================ */

/* Schrift wie Boxen / Headlines */
.nav-link,
.dropdown-link{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
}

/* Hauptmenü: goldene Kapseln */
.nav-link{
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: #111;
  transition: background .2s ease, box-shadow .2s ease;
}

.nav-link:hover{
  background: rgba(176,138,69,0.18);
  box-shadow: 0 6px 18px rgba(176,138,69,0.18);
}

/* Aktiver Menüpunkt */
.nav-link.is-active{
  background: rgba(176,138,69,0.22);
}

/* Dropdown-Container ruhiger */
.dropdown{
  background: transparent;
  border: none;
  box-shadow: none;
  padding-top: 8px;
}

/* Dropdown-Punkte wie Boxen */
.dropdown-link{
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  padding: 12px 22px;
  margin: 6px 0;
  text-align: center;
}

.dropdown-link:hover{
  background: rgba(176,138,69,0.20);
}

/* Abstand Dropdown unter Aktionen */
.nav-item.has-dropdown .dropdown{
  right: auto;
  left: 0;
}
