/* =========================================================
   FEIERSTUNDE – GLOBALE STYLES (dunkles Theme)
   ========================================================= */

:root {
  --white: #F8F7F6;
  --black: #000000;
  --grey-100: #7C7C7B;
  --grey-200: #3E3E3E;
  --grey-500: #1F1F1F;
  --red: #8A0C0C;
  --grey-op-18: rgba(146, 143, 139, 0.18);
  --grey-op-30: rgba(146, 143, 139, 0.30);
  --font-sans: 'Geist', sans-serif;
  --font-serif: 'Playfair Display', serif;
  /* Layout */
  --max-width: 1440px;
  --gutter: 40px;
  --header-height: 80px;

  /* Einheitlicher vertikaler Abstand pro Section (site-weit).
     60px oben + 60px unten = 120px zwischen zwei Sections. */
  --section-space: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ===== SELECTION ===== */
::selection {
  background-color: var(--red);
  color: var(--white);
}

/* ===== EINHEITLICHER SECTION-ABSTAND (alle Seiten) =====
   Diese eine Regel setzt den vertikalen Abstand jeder Section
   auf allen Seiten. Das [class] sorgt dafuer, dass sie die
   Section-eigenen Abstaende ueberschreibt. Zentral steuerbar
   ueber die Variable --section-space oben im :root. */
main > section[class] {
  padding-block: var(--section-space);
}

@media (max-width: 768px) {
  :root {
    --section-space: 40px;
  }
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background-color: var(--red);
  color: var(--white);
}

.btn--primary:hover {
  opacity: 0.85;
}

.btn--ghost {
  border: 1px solid var(--grey-op-30);
  color: var(--white);
}

.btn--ghost:hover {
  background-color: var(--white);
  color: var(--black);
}

.btn--light {
  background-color: var(--white);
  color: var(--black);
}

.btn--light:hover {
  opacity: 0.85;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title__pre {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  color: var(--white);
}

.section-title__main {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.05;
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: var(--black);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo img {
  width: 180px;
  height: auto;
}

.nav__list {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav__link {
  font-size: 16px;
  color: var(--white);
  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--red);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* =========================================================
   FOOTER (global) – grosse Wortmarke + roter Glow
   ========================================================= */
.site-footer {
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  color: var(--white);
  padding-block: 50px 40px;
  margin-top: 40px;
}

.site-footer__glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 120%;
  height: 460px;
  background: radial-gradient(ellipse at center, rgba(138, 12, 12, 0.6), rgba(138, 12, 12, 0) 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer__wordmark {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--grey-200);
  font-size: clamp(48px, 13.5vw, 200px);
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-footer__contact {
  margin-top: 36px;
}

.site-footer__email {
  font-size: 18px;
  color: var(--white);
}

.site-footer__email:hover {
  color: var(--red);
}

.site-footer__phone {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--grey-100);
}

.site-footer__cols {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.site-footer__address p {
  font-size: 13px;
  color: var(--grey-100);
  line-height: 1.7;
}

.site-footer__address p:first-child {
  color: var(--white);
}

.site-footer__links {
  display: flex;
  gap: 64px;
}

.site-footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__links a {
  font-size: 14px;
  color: var(--white);
}

.site-footer__links a:hover {
  color: var(--red);
}

.site-footer__bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--grey-op-18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: var(--grey-100);
}

.site-footer__legal {
  display: flex;
  gap: 32px;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .site-footer__cols {
    flex-direction: column;
    gap: 32px;
  }
  .site-footer__links {
    gap: 48px;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}