/* ============================================================
   LYSAH — Shared Stylesheet
   Applies to: index, impressum, privacy-policy, terms-and-conditions
   ============================================================ */

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(0,0,0,0.92);
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links li {
  display: flex;
}
.nav-links li a {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  transition: opacity 0.2s;
}
.nav-links li a:hover { opacity: 0.6; }
.nav-links .btn-email a {
  display: flex;
  justify-content: center;
  height: fit-content;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid #fff; padding: 0.5rem 1.2rem;
  transition: background 0.2s, color 0.2s;
}
.nav-links .btn-email a:hover { background: #fff; color: #000; }

/* ── SECTION HEADING ── */
.section-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  padding: 2rem 3rem;
}

/* ── FOOTER ── */
footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.35);
  padding: 3rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-socials { display: flex; gap: 1.8rem; align-items: center; }
.footer-socials a { opacity: 0.7; transition: opacity 0.2s; }
.footer-socials a:hover { opacity: 1; }
.footer-socials svg { width: 22px; height: 22px; fill: #fff; }
.footer-copy { font-size: 0.8rem; font-weight: 200; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 1.5rem; font-size: 0.8rem; font-weight: 200; text-decoration: underline; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: #fff; }

/* ── MOBILE MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: #fff; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.2rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; }
.mobile-menu a:hover { opacity: 0.6; }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 2.5rem;
  font-size: 1.8rem;
  background: none; border: none;
  color: #fff; cursor: pointer;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.cookie-banner a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.cookie-banner button {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.cookie-banner button:hover { background: transparent; color: #fff; }

/* ── LEGAL PAGES (impressum, privacy, T&C) ── */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}
.page-content h1 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.page-content h6 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
}
.page-content p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}
.page-content ol, .page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-content ol li, .page-content ul li {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.6rem;
}
.page-content a { text-decoration: underline; color: rgba(255,255,255,0.6); }
.page-content a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav.main-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-legal { flex-direction: column; align-items: center; gap: 0.6rem; ;}
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .nav-logo img { height: 36px; width: auto; }
}
