/* ─────────────────────────────────────────
   MS Eventservice — Style
   Fonts: Anton (display) + DM Sans (body)
───────────────────────────────────────── */

:root {
  --black: #14161A;
  --dark: #1C1F24;
  --mid: #3A3E44;
  --grey: #74787C;
  --light-grey: #B8BCBF;
  --white: #A6C9AE;
  --off-white: #B8BCBF;
  --paper: #1e2124;
  --font: 'Jost', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --radius: 2px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

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

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 5rem 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.4rem;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section-subtitle {
  text-align: center;
  color: var(--light-grey);
  margin-bottom: 3rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,14,14,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mid);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--dark);
  border-bottom: 1px solid var(--mid);
  padding: 1rem 0;
}

.nav__menu.is-open { display: flex; }

.nav__link {
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav__link:hover { color: var(--light-grey); }

@media (min-width: 768px) {
  .nav__burger { display: none; }
  .nav__menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 2.5rem;
  }
}

/* ── Hero ── */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero {
  background: var(--black);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__visual {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 1.25rem 5rem;
  margin-top: -5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-bottom: 1.25rem;
  animation: heroUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: heroUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero__sub {
  color: var(--light-grey);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: heroUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: heroUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn:hover { opacity: 0.88; transform: translateY(-2px); }
.btn:active { transform: translateY(0); opacity: 1; }

.btn--primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(191,214,201,0);
}

.btn--primary:hover {
  box-shadow: 0 6px 24px rgba(191,214,201,0.25);
}

.form-success {
  padding: 1.2rem 1.6rem;
  background: rgba(37,211,102,0.12);
  border: 1px solid #25d366;
  border-radius: 8px;
  color: #25d366;
  font-weight: 600;
}

.form-error {
  padding: 1.2rem 1.6rem;
  background: rgba(220,53,69,0.12);
  border: 1px solid #dc3545;
  border-radius: 8px;
  color: #dc3545;
  margin-bottom: 1rem;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(240,236,228,0.4);
}

.btn--outline:hover {
  border-color: var(--white);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* ── Ticker ── */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-wrap {
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  padding: 0.65rem 0;
}

.ticker {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-grey);
  white-space: nowrap;
}

.ticker__sep {
  color: var(--grey) !important;
  font-size: 0.5rem !important;
  letter-spacing: 0 !important;
}

/* ── Partyzubehör ── */
.products { background: var(--dark); }

.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--mid);
  border: 1px solid var(--mid);
}

@media (min-width: 768px) {
  .products__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .products__grid { grid-template-columns: repeat(5, 1fr); }
}

.product-card {
  background: var(--dark);
  overflow: hidden;
  transition: background var(--transition);
}

.product-card:hover { background: var(--paper); }

.product-card__img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(255,255,255,0.018) 6px,
    rgba(255,255,255,0.018) 7px
  );
  pointer-events: none;
}

.product-card__img--djservice    { background: linear-gradient(160deg, #0a0a1e, #050514); }
.product-card__img--funfood      { background: linear-gradient(160deg, #1e1400, #140e00); }
.product-card__img--huepfburgen  { background: linear-gradient(160deg, #1a2a1a, #0a140a); }
.product-card__img--kostueme     { background: linear-gradient(160deg, #281420, #140a10); }
.product-card__img--partyzubehoer { background: linear-gradient(160deg, #1e0a1e, #14061a); }

.product-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 1rem 1rem 1.25rem;
  border-top: 1px solid var(--mid);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.product-card__desc {
  font-size: 0.78rem;
  color: var(--light-grey);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.product-card__price {
  font-size: 0.8rem;
  color: var(--light-grey);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.product-card__price strong {
  color: var(--white);
  font-size: 0.95rem;
}

/* ── DJ Marcus ── */
.dj {
  background: var(--black);
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
}

.dj__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .dj__inner {
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
  }
  .dj__photo { flex: 0 0 260px; }
  .dj__content { flex: 1; }
}

.dj__photo-placeholder {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3/4;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--mid);
  position: relative;
  overflow: hidden;
}

.dj__photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.015) 8px,
    rgba(255,255,255,0.015) 9px
  );
}

.dj__photo img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 1px solid var(--mid);
}

.dj__text {
  color: var(--light-grey);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.dj__features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dj__features li {
  font-size: 0.88rem;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dj__features li::before {
  content: '—';
  color: var(--grey);
  flex-shrink: 0;
}

.dj__price {
  font-size: 0.8rem;
  color: var(--light-grey);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.dj__price strong { color: var(--white); }

/* ── Galerie ── */
.gallery { background: var(--dark); }

.gallery__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.gallery__filter-btn {
  background: transparent;
  border: 1.5px solid var(--mid);
  color: var(--light-grey);
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  font-family: var(--font);
  transition: border-color var(--transition), color var(--transition);
}

.gallery__filter-btn:hover,
.gallery__filter-btn.is-active {
  border-color: var(--white);
  color: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 180px;
  gap: 4px;
  margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (min-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }
}

.gallery__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item:hover img { transform: scale(1.05); }

.gallery__instagram {
  text-align: center;
  color: var(--light-grey);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.gallery__ig-link {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid var(--grey);
  padding-bottom: 1px;
  transition: border-color var(--transition);
}

.gallery__ig-link:hover { border-color: var(--white); }

/* ── Über uns ── */
.about { background: var(--black); }

.about__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .about__inner {
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
  }
  .about__content { flex: 1; }
  .about__photo { flex: 0 0 220px; }
}

.about__text {
  color: var(--light-grey);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.about__facts {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mid);
}

.about__fact {
  display: flex;
  flex-direction: column;
}

.about__fact strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.about__fact span {
  font-size: 0.7rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.about__photo-placeholder {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 3/4;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  border: 1px solid var(--mid);
}

/* ── Bewertungen ── */
.reviews { background: var(--dark); }

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 600px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--mid);
  }
}

.review-card {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--mid);
}

@media (min-width: 600px) {
  .review-card {
    border-bottom: none;
    border-right: 1px solid var(--mid);
  }
  .review-card:last-child { border-right: none; }
}

.review-card__stars {
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.review-card__text {
  font-size: 0.92rem;
  color: var(--off-white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.review-card__author {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── FAQ ── */
.faq { background: var(--black); }

.faq__list {
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid var(--mid);
}

.faq__item { border-bottom: 1px solid var(--mid); }

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  letter-spacing: 0.01em;
}

.faq__question:hover { color: var(--light-grey); }

.faq__icon {
  font-size: 1rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--grey);
  transition: transform var(--transition), color var(--transition);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  color: var(--white);
}

.faq__answer {
  display: none;
  padding-bottom: 1.5rem;
}

.faq__item.is-open .faq__answer { display: block; }

.faq__answer p {
  color: var(--light-grey);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ── Kontakt ── */
.contact { background: var(--dark); }

.contact__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
  .contact__direct { flex: 0 0 210px; }
  .contact__form { flex: 1; }
  .contact__divider { display: none; }
}

.contact__method-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.contact__wa-btn,
.contact__phone-btn {
  display: block;
  text-align: center;
  margin-bottom: 0.75rem;
}

.contact__note {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 1.25rem;
  line-height: 1.6;
}

.contact__divider {
  text-align: center;
  color: var(--grey);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact__divider::before,
.contact__divider::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--mid);
  margin: 1rem 0;
}

/* Form */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--light-grey);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }

.form-group textarea { resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--black);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color var(--transition);
}

.form-check:hover { border-color: var(--light-grey); }
.form-check input[type="checkbox"] { accent-color: var(--white); }

/* ── Footer ── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--mid);
  padding-top: 3.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
}

.footer__logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.04em;
}

.footer__links,
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a,
.footer__social a {
  font-size: 0.82rem;
  color: var(--grey);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__social a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid #161616;
  padding: 1.25rem 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.04em;
}

.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: var(--grey); transition: color var(--transition); }
.footer__legal a:hover { color: var(--white); }

/* Scroll-Offset für sticky nav */
:target { scroll-margin-top: 70px; }
