/* ============================================
   GESUNDBLEIBEN.SHOP — Quiet Luxury / Organic Minimalism
   Updated: Mai 2026
   ============================================ */

:root {
  /* Palette */
  --bg-primary: #FDFBF7;
  --bg-secondary: #F3EFE6;
  --accent-gold: #C5A880;
  --text-main: #3D342E;
  --text-light: #7A6F65;
  --white: #FFFFFF;
  --shadow: rgba(61,52,46,0.06);
  --shadow-soft: rgba(61,52,46,0.04);
}

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

html { scroll-behavior: smooth; overflow-x: hidden }

body {
  font-family: 'Inter', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-main);
  line-height: 1.75;
  font-weight: 300;
  background: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- TYPOGRAFIE ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-main);
}

h1 { font-size: 3rem; letter-spacing: -0.01em }
h2 { font-size: 2.4rem }
h3 { font-size: 1.6rem }
h4 { font-size: 1.15rem; font-weight: 600 }

p, span, li, label {
  font-family: 'Inter', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-main);
}

a { text-decoration: none; color: inherit }

/* ---- LAYOUT CONTAINER ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,251,247,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197,168,128,0.1);
}
nav .inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  padding: 0 1.5rem;
}
nav .logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; font-weight: 500;
  color: var(--text-main); letter-spacing: 0.01em;
}
nav .logo span { color: var(--accent-gold) }
nav .links { display: flex; gap: 2.5rem; list-style: none }
nav .links a {
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-light); transition: color 0.3s;
}
nav .links a:hover, nav .links a.active { color: var(--accent-gold) }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px }
.burger span { width: 22px; height: 1.5px; background: var(--text-main); transition: 0.3s; border-radius: 1px }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 3px; transition: all 0.3s; cursor: pointer;
  border: 1px solid transparent; font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}
.btn-primary:hover {
  background: #B0906A;
  border-color: #B0906A;
}
.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(197,168,128,0.4);
}
.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.btn-ghost {
  background: var(--bg-secondary);
  color: var(--text-main);
  border-color: transparent;
}
.btn-ghost:hover { background: #EBE5D8 }

/* ---- SECTIONS ---- */
.section-cream { background: var(--bg-primary); padding: 6rem 0 }
.section-sand { background: var(--bg-secondary); padding: 6rem 0 }

/* ---- FOOTER ---- */
footer {
  background: var(--text-main);
  color: rgba(253,251,247,0.5);
  padding: 3rem 2rem;
  font-size: 0.82rem;
}
footer .inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
footer a { color: rgba(253,251,247,0.5); transition: color 0.3s }
footer a:hover { color: var(--accent-gold) }
footer .footer-links { display: flex; gap: 2rem; list-style: none }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  nav .links { display: none }
  .burger { display: flex }
  nav .links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg-primary);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(197,168,128,0.1);
    gap: 1.2rem;
  }
  h1 { font-size: 2.2rem }
  h2 { font-size: 1.8rem }
  .section-cream, .section-sand { padding: 4rem 0 }
}
