/* =========================================================
   PAGE START – TWIISII
========================================================= */

:root{
  --gold:#c9a06a;
  --line:rgba(255,255,255,.08);
}

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

body{
  font-family:"Cinzel", serif;
  color:var(--gold);
  overflow-x:hidden;
  position:relative;
  background:#000;
}

/* =========================
   VIDEO BACKGROUND
========================= */

.video-bg{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

.video-overlay{
  position:fixed;
  inset:0;
  background:linear-gradient(rgba(0,0,0,.75), rgba(20,0,0,.95));
  z-index:-1;
}

/* Ambient Glow */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:radial-gradient(circle at 70% 40%, rgba(180,0,0,.15), transparent 60%);
  animation:ambientPulse 12s ease-in-out infinite alternate;
  pointer-events:none;
  z-index:-1;
}

@keyframes ambientPulse{
  from{opacity:.3;}
  to{opacity:.6;}
}

/* =========================
   HERO
========================= */

section{padding:0 24px;}

.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.hero-inner{max-width:880px;}

/* Animation */
.hero-welcome,
.hero-name,
.hero-note,
.hero-sub,
.hero-longtext{
  opacity:0;
  transform:translateY(20px);
  animation:fadeInUp 1s ease forwards;
}

.hero-welcome{animation-delay:.2s;}
.hero-name{animation-delay:.4s;}
.hero-note{animation-delay:.6s;}
.hero-sub{animation-delay:.8s;}
.hero-longtext{animation-delay:1s;}

@keyframes fadeInUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.hero-welcome{
  font-size:.75rem;
  letter-spacing:.4em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:18px;
}

.hero-name{
  font-family:"UnifrakturMaguntia";
  font-size:clamp(3rem,8vw,6.5rem);
  color:var(--gold);
  font-weight:400;
  margin-bottom:35px;
}

.hero-note,
.hero-sub{
  text-transform:uppercase;
  letter-spacing:.35em;
  color:var(--gold);
  margin-bottom:20px;
}

.hero-longtext{
  max-width:720px;
  margin:60px auto;
  line-height:2;
  text-transform:uppercase;
  color:var(--gold);
}

/* =========================
   BOXES
========================= */

.hero-boxes{
  width:100%;
  max-width:1200px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:40px;
}

.hero-box{
  backdrop-filter:blur(14px);
  background:linear-gradient(160deg, rgba(201,160,106,.15), rgba(0,0,0,.75));
  border:1px solid rgba(201,160,106,.4);
  padding:55px 40px;
  display:flex;
  flex-direction:column;
  transition:.5s ease;
  opacity:0;
  transform:translateY(40px);
}

.hero-box.show{
  opacity:1;
  transform:translateY(0);
}

.hero-box:hover{
  transform:translateY(-10px);
  box-shadow:0 60px 120px rgba(0,0,0,.85);
}

.hero-box-title{
  font-family:"UnifrakturMaguntia";
  font-size:2rem;
  color:var(--gold);
  margin-bottom:25px;
  font-weight:400;
}

.hero-box p{
  text-transform:uppercase;
  letter-spacing:.15em;
  margin-bottom:30px;
  color:var(--gold);
}

.hero-box a{
  display:inline-block;
  padding:12px 28px;
  border:1px solid rgba(201,160,106,.6);
  color:var(--gold);
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.3em;
  margin-top:auto;
  text-decoration:none;
  position:relative;
  overflow:hidden;
}

/* Gold Sweep */
.hero-box a::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transition:.6s;
}

.hero-box a:hover::before{left:100%;}

.hero-box a:hover{
  background:var(--gold);
  color:#000;
  box-shadow:0 0 25px rgba(201,160,106,.6);
}

/* ===== ATELIER / BUILDING BOX ===== */

.hero-box.building{
  background:linear-gradient(160deg, rgba(0,0,0,.85), rgba(0,0,0,.95));
  opacity:.9;
}

/* Badge */
.hero-box.building::after{
  content:"IM AUFBAU";
  position:absolute;

  top:20px;
  right:-50px;
  width:160px;
  height:24px; /* feste Höhe wichtig! */

  background:var(--gold);
  color:#000;

  font-size:.65rem;
  letter-spacing:.18em;

  display:flex;                 /* 🔥 wichtig */
  align-items:center;           /* vertikal zentriert */
  justify-content:center;       /* horizontal zentriert */

  transform:rotate(45deg);

  font-weight:600;

  box-shadow:0 5px 15px rgba(0,0,0,.5);
}

.hero-box{
  backdrop-filter:blur(14px);
  background:linear-gradient(160deg, rgba(201,160,106,.15), rgba(0,0,0,.75));
  border:1px solid rgba(201,160,106,.4);
  padding:55px 40px;
  display:flex;
  flex-direction:column;
  transition:.5s ease;
  opacity:0;
  transform:translateY(40px);

  overflow:hidden; /* 🔥 DAS FEHLT BEI DIR */
}

/* =========================
   SUPPORT (FIXED)
========================= */

.support{
  backdrop-filter:blur(18px);
  background:linear-gradient(160deg, rgba(90,100,110,.12), rgba(0,0,0,.65));
  padding:120px 24px 80px;
  text-align:center;
}

.support-inner{
  max-width:900px;
  margin:0 auto;
}

.support-title{
  font-family:"UnifrakturMaguntia";
  font-size:2.2rem;
  color:var(--gold);
  margin-bottom:30px;
  font-weight:400;
}

.support-text{
  text-transform:uppercase;
  letter-spacing:.25em;
  color:var(--gold);
  margin-bottom:40px;
  line-height:2;
}

/* GRID */
.support-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}

/* CARDS */
.support-card{
  position:relative;
  height:200px;
  background-size:cover;
  background-position:center;
  border:1px solid rgba(201,160,106,.3);
  overflow:hidden;
  transition:.4s ease;
}

/* Overlay */
.support-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.25),
    rgba(0,0,0,.9)
  );
}

/* Hover */
.support-card:hover{
  transform:scale(1.04);
  box-shadow:0 0 30px rgba(201,160,106,.35);
}

/* Content */
.support-card-content{
  position:absolute;
  bottom:25px;
  left:0;
  right:0;
  z-index:2;
  text-align:center;
}

.support-card-title{
  font-size:12px;
  letter-spacing:.35em;
  margin-bottom:12px;
  font-weight:400;
}

.support-card a{
  display:inline-block;
  padding:10px 22px;
  border:1px solid rgba(201,160,106,.6);
  color:var(--gold);
  text-decoration:none;
  font-size:10px;
  letter-spacing:.3em;
  position:relative;
  overflow:hidden;
}

/* Gold Sweep auch unten */
.support-card a::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transition:.6s;
}

.support-card a:hover::before{left:100%;}

.support-card a:hover{
  background:var(--gold);
  color:#000;
  box-shadow:0 0 25px rgba(201,160,106,.6);
}

/* =========================
   FOOTER
========================= */

footer{
  text-align:center;
  padding:70px 20px 40px;
  border-top:1px solid var(--line);
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.2em;
}

.footer-socials{
  margin-top:18px;
}

.footer-socials a{
  margin:0 10px;
  color:var(--gold);
  transition:.3s ease;
}

.footer-socials a:hover{
  opacity:.7;
}

/* FOOTER LINKS FIX */

footer a,
footer a:visited,
footer a:active{
    color:var(--gold);
    text-decoration:none;
}

footer a:hover{
    opacity:.7;
}