/* =============================================
   HochzeitsDJ+ — Stylesheet
   Aesthetic: Dark luxury / club elegance
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg:        #0d0d0d;
  --surface:   #161616;
  --card:      #1d1d1d;
  --gold:      #c9a84c;
  --gold-lt:   #e8c97a;
  --white:     #f0ece4;
  --muted:     #888;
  --border:    rgba(201,168,76,0.18);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --max:       1100px;
  --radius:    4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-lt); }
img { max-width: 100%; height: auto; display: block; }

/* ── SCROLL REVEAL ANIMATIONS ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* staggered children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .13s; }
.stagger > *:nth-child(3) { transition-delay: .26s; }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .45s, backdrop-filter .45s, border-color .45s;
}
nav.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.4rem; color: var(--gold); letter-spacing: .04em;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: .88rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; transition: .3s;
}

/* ── HERO — PARALLAX ─────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero-parallax {
  position: absolute;
  top: -15%; left: 0; right: 0; bottom: -15%;
  background-image: url('images/dj-overhead.jpg');
  background-size: cover;
  background-position: center top;
  will-change: transform;
}
.hero-parallax::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.7) 0%,
    rgba(13,13,13,0.45) 50%,
    rgba(13,13,13,0.85) 100%
  );
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-tag {
  display: inline-block;
  font-size: .75rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
  border: 1px solid var(--border); padding: .35rem 1rem; border-radius: 20px;
  animation: fadeDown .8s ease both;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.18; margin-bottom: 1.4rem; color: var(--white);
  animation: fadeDown .9s .1s ease both;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  font-size: 1.05rem; color: #ccc; max-width: 560px; margin: 0 auto 2.4rem;
  animation: fadeDown .9s .2s ease both;
}
.hero .btn { animation: fadeDown .9s .35s ease both; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; opacity: .45; animation: bounceHint 2.2s infinite;
}
.scroll-hint span { display: block; width: 1px; height: 44px; background: var(--gold); margin: 0 auto; }
@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-block; padding: .75rem 2rem;
  font-family: var(--font-body);
  font-size: .85rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; border-radius: var(--radius); transition: .25s;
}
.btn-primary { background: var(--gold); color: #0d0d0d; }
.btn-primary:hover {
  background: var(--gold-lt); color: #0d0d0d;
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.35);
}
.btn-outline { border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover {
  background: var(--gold); color: #0d0d0d; transform: translateY(-2px);
}

/* ── LAYOUT ───────────────────────────────────── */
section { padding: 6rem 2rem; }
.container { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-size: .75rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .8rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2; margin-bottom: 1rem;
}
.section-sub { color: var(--muted); max-width: 560px; margin-bottom: 3rem; margin-left: auto; margin-right: auto; }

/* ── SERVICE CARDS ────────────────────────────── */
.services { background: var(--surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.55);
  border-color: rgba(201,168,76,0.38);
}
.card-img-wrap { overflow: hidden; height: 220px; }
.card-img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform .55s ease;
}
.card:hover .card-img { transform: scale(1.05); }
.card-body { padding: 1.4rem 1.6rem 1.8rem; }
.card-title {
  font-family: var(--font-head); font-size: 1.2rem;
  margin-bottom: .6rem; color: var(--white);
}
.card-text { color: var(--muted); font-size: .93rem; }

/* ── PARALLAX BAND ────────────────────────────── */
.parallax-band {
  position: relative; height: 400px; overflow: hidden;
}
.parallax-band-img {
  position: absolute;
  top: -20%; left: 0; right: 0; bottom: -20%;
  background-size: cover; background-position: center;
  will-change: transform;
}
.parallax-band-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.6);
  display: flex; align-items: center; justify-content: center;
}
.parallax-band-text {
  text-align: center; position: relative; z-index: 1;
  max-width: 620px; padding: 0 2rem;
}
.parallax-band-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: .8rem;
}
.parallax-band-text p { color: #ccc; margin-bottom: 1.8rem; }

/* ── SPLIT ────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.split.reverse .split-img { order: -1; }
.split-img {
  position: relative; border-radius: var(--radius); overflow: hidden;
}
.split-img img {
  width: 100%; height: 420px; object-fit: cover;
  transition: transform .6s ease;
}
.split-img:hover img { transform: scale(1.04); }
.split-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
}
.divider { width: 48px; height: 2px; background: var(--gold); margin: 1rem 0 1.4rem; }

/* ── CTA BAND ─────────────────────────────────── */
.cta-band {
  background: linear-gradient(90deg, #1a1505 0%, #111 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; padding: 4.5rem 2rem;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem;
}
.cta-band p { color: var(--muted); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── BLOG ─────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.post-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  transition: border-color .25s, transform .25s;
}
.post-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.post-meta { font-size: .78rem; color: var(--muted); margin-bottom: .8rem; letter-spacing: .06em; }
.post-title {
  font-family: var(--font-head); font-size: 1.25rem;
  margin-bottom: .7rem; color: var(--white);
}
.post-excerpt { color: var(--muted); font-size: .92rem; margin-bottom: 1.2rem; }

/* ── CONTACT ──────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-info h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 1.4rem; }
.contact-detail {
  display: flex; gap: .8rem; align-items: flex-start;
  margin-bottom: 1rem; color: var(--muted); font-size: .93rem;
}
.contact-detail .icon { color: var(--gold); font-size: 1.1rem; margin-top: .1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--white);
  padding: .75rem 1rem; font-family: var(--font-body); font-size: .95rem;
  transition: border-color .2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── FOOTER ───────────────────────────────────── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 3.5rem 2rem 2rem; }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: .8rem; }
.footer-brand p { color: var(--muted); font-size: .9rem; max-width: 260px; }
.footer-col h4 {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: var(--muted); font-size: .9rem; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-bottom {
  max-width: var(--max); margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--muted);
}

/* ── PAGE HERO ────────────────────────────────── */
.page-hero {
  padding: 10rem 2rem 5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero p, .page-hero h1, .page-hero .section-label { text-align: center; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.page-hero p { color: var(--muted); max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .section-label { position: relative; z-index: 1; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.4rem; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,13,0.97);
    flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: block; z-index: 101; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse .split-img { order: 0; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .parallax-band { height: 280px; }
}
