:root{
  --bg:#050505;
  --bg-soft:#0e0e0e;
  --bg-card:#111111;
  --text:#ffffff;
  --muted:rgba(255,255,255,0.65);
  --line:rgba(255,255,255,0.1);
  --accent:#d4af37;          /* elegantes Gold */
  --accent-soft:#e8cc6e;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', 'Montserrat', sans-serif;
  background:var(--bg);
  color:#fff;
  line-height:1.6;
}

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

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

/* HEADER */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  padding:28px 42px;
}

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

.logo{
  font-size:1.6rem;
  font-weight:700;
  letter-spacing:3px;
  color:#fff;
  text-transform:uppercase;
}

.nav{
  display:flex;
  gap:38px;
}

.nav a{
  font-size:0.85rem;
  font-weight:600;
  letter-spacing:1.5px;
  color:rgba(255,255,255,0.85);
  transition:0.3s ease;
}

.nav a:hover{
  color:var(--accent);
}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width:28px;
  height:2px;
  background:#fff;
  margin:6px 0;
}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(5,5,5,0.7));
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  width:min(900px, 90%);
  padding-top:60px;
}

.hero-logo{
  width:110px;
  margin:0 auto 26px;
  filter:drop-shadow(0 0 10px rgba(0,0,0,0.45));
}

.hero h1{
  font-size:clamp(2.5rem, 6vw, 5rem);
  line-height:1.0;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:3px;
}

.hero p{
  margin-top:20px;
  font-size:1.05rem;
  color:rgba(255,255,255,0.75);
  letter-spacing:0.5px;
}

.hero-btn{
  display:inline-block;
  margin-top:36px;
  padding:14px 38px;
  border:1px solid var(--accent);
  color:var(--accent);
  font-weight:600;
  font-size:0.9rem;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:0.3s ease;
}

.hero-btn:hover{
  background:var(--accent);
  color:#050505;
}

/* GENERAL SECTION */
.events-section,
.gallery-section,
.about-section,
.member-section,
.impressions-section{
  padding:100px 24px;
  background:var(--bg);
}

.section-head{
  max-width:1200px;
  margin:0 auto 48px;
  text-align:center;
}

.eyebrow{
  color:var(--accent);
  font-size:0.75rem;
  font-weight:600;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.section-head h2,
.section-container h2{
  font-size:clamp(1.8rem, 4vw, 3rem);
  font-weight:700;
  letter-spacing:1px;
}

/* EVENTS */
.events-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.event-card{
  background:var(--bg-card);
  border:1px solid var(--line);
  padding:32px;
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:0.3s ease;
  border-radius:4px;
}

.event-card:hover{
  transform:translateY(-4px);
  border-color:var(--accent);
  box-shadow:0 8px 30px rgba(0,0,0,0.4);
}

.event-date{
  display:inline-block;
  font-size:0.75rem;
  color:var(--accent);
  letter-spacing:2px;
  font-weight:600;
  margin-bottom:16px;
}

.event-card h3{
  font-size:1.4rem;
  font-weight:700;
  margin-bottom:12px;
  letter-spacing:0.5px;
}

.event-card p{
  color:rgba(255,255,255,0.65);
  line-height:1.7;
  margin-bottom:24px;
  font-size:0.95rem;
}

.event-card a{
  display:inline-block;
  font-weight:600;
  font-size:0.8rem;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--accent);
  border-bottom:1px solid transparent;
  padding-bottom:2px;
  transition:0.3s ease;
  align-self:flex-start;
}

.event-card a:hover{
  border-bottom-color:var(--accent);
}

/* GALLERY */
.gallery-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:18px;
  grid-auto-rows:260px;
}

.gallery-item{
  overflow:hidden;
  background:#111;
}

.gallery-item.large{
  grid-row:span 2;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
}

.gallery-item:hover img{
  transform:scale(1.06);
}

/* ABOUT */
.about-inner{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

.about-text{
  max-width:700px;
  margin:0 auto;
}

.about-text h2{
  font-size:clamp(1.8rem, 4vw, 2.8rem);
  font-weight:700;
  margin-bottom:24px;
  letter-spacing:1px;
  line-height:1.2;
}

.about-text p:last-child{
  color:rgba(255,255,255,0.65);
  line-height:1.8;
  font-size:1rem;
}

/* MEMBER / CONTACT */
.member-section{
  text-align:center;
  padding-top:100px;
  padding-bottom:120px;
  background:var(--bg-soft);
}

.instagram-icon{
  font-size:1.6rem;
  margin-bottom:20px;
  color:var(--accent);
}

.member-section h2{
  font-size:clamp(1.8rem, 4vw, 3rem);
  line-height:1.1;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:40px;
}

.member-form{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  max-width:900px;
  margin:0 auto 24px;
}

.member-form input{
  width:220px;
  padding:16px 18px;
  background:var(--bg-card);
  border:1px solid var(--line);
  color:#fff;
  font-size:0.95rem;
  font-family:inherit;
  border-radius:4px;
  transition:border-color 0.3s;
}

.member-form input:focus{
  outline:none;
  border-color:var(--accent);
}

.member-form input::placeholder{
  color:rgba(255,255,255,0.4);
}

.member-form button{
  padding:16px 32px;
  border:1px solid var(--accent);
  background:var(--accent);
  color:#050505;
  font-weight:700;
  font-size:0.85rem;
  letter-spacing:2px;
  text-transform:uppercase;
  cursor:pointer;
  border-radius:4px;
  transition:0.3s ease;
  font-family:inherit;
}

.member-form button:hover{
  background:transparent;
  color:var(--accent);
}

.member-note{
  color:rgba(255,255,255,0.35);
  font-size:0.85rem;
  margin-top:8px;
}

/* FOOTER */
.footer{
  background:var(--bg);
  padding:70px 24px 50px;
  border-top:1px solid var(--line);
}

.footer-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:40px;
}

.footer h4{
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:18px;
}

.footer a{
  display:block;
  margin-bottom:12px;
  color:rgba(255,255,255,0.55);
  font-size:0.9rem;
  transition:0.3s;
}

.footer a:hover{
  color:var(--accent);
}

/* MOBILE */
@media (max-width: 980px){
  .events-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .gallery-item.large{
    grid-row:span 1;
    grid-column:span 2;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 760px){
  .site-header{
    padding:20px 18px;
  }

  .logo{
    font-size:1.4rem;
  }

  .nav-toggle{
    display:block;
  }

  .nav{
    position:absolute;
    top:70px;
    right:18px;
    background:rgba(0,0,0,0.94);
    border:1px solid rgba(255,255,255,0.1);
    padding:16px;
    display:none;
    flex-direction:column;
    gap:16px;
    min-width:190px;
  }

  .nav.open{
    display:flex;
  }

  .hero h1{
    font-size:3rem;
  }

  .member-form{
    flex-direction:column;
    align-items:center;
  }

  .member-form input,
  .member-form button{
    width:min(420px, 92vw);
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item.large{
    grid-column:span 1;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }
}

/* IMPRESSIONS (global – kein Medienbruch) */
.section-container{
  max-width:1200px;
  margin:0 auto 48px;
  text-align:center;
}

.section-text{
  margin-top:14px;
  color:rgba(255,255,255,0.6);
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.7;
  font-size:0.95rem;
}

.gallery-preview-button{
  display:flex;
  justify-content:center;
  margin-top:40px;
}