@font-face {
  font-family: "Rubik Dirt";
  src: url("fonts/RubikDirt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("fonts/DMSans-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #8f1717;
  --red2: #b62420;
  --black: #090909;
  --cream: #fff;
  --ink: #181818;
  --radius: 4px;
  --font-display: "Rubik Dirt", Impact, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font: 16px/1.65 var(--font-body);
  color: var(--ink);
  background: var(--cream);
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.wrap,
.split,
.nav {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #292929;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 120px;
  height: auto;
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #eee;
  font-size: 0.92rem;
}

nav a {
  position: relative;
  transition: color 0.2s;
}

nav a:not(.cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--red2);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

nav a:not(.cta):hover::after,
nav a:not(.cta).active::after {
  transform: scaleX(1);
}

nav a:not(.cta):hover,
nav a.active {
  color: #ff8b82;
}

nav .cta {
  background: var(--red);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: background 0.2s;
}

nav .cta:hover {
  background: var(--red2);
}

.menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav.open .menu-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav.open .menu-bar:nth-child(2) {
  opacity: 0;
}

.nav.open .menu-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  margin: auto;
  text-align: center;
}

.hero-enter > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-enter.is-ready > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-enter.is-ready > *:nth-child(1) { transition-delay: 0.12s; }
.hero-enter.is-ready > *:nth-child(2) { transition-delay: 0.28s; }
.hero-enter.is-ready > *:nth-child(3) { transition-delay: 0.42s; }
.hero-enter.is-ready > *:nth-child(4) { transition-delay: 0.54s; }

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  max-width: 900px;
  margin: 10px auto 24px;
}

.hero p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: #ddd;
}

.hero .actions {
  justify-content: center;
}

.eyebrow {
  color: #ff8b82;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.76rem;
  font-family: var(--font-body);
  background: none;
  margin: 0 0 8px;
}

.eyebrow.dark {
  color: var(--red);
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border: 0;
  background: var(--red);
  color: white;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: var(--red2);
  transform: translateY(-1px);
}

.ghost {
  background: transparent;
  border: 1px solid #777;
}

.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Sections */
.light,
.gallery {
  padding: 105px 0;
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.process {
  padding: 105px 0;
  background: #fff;
  position: relative;
  z-index: 1;
}

section.dark,
.contact {
  padding: 105px 0;
}

section.dark {
  background: var(--black);
  color: #fff;
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-headline {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  gap: 0.02em;
  margin: 0 0 16px;
}

.split-headline .h2-line {
  display: block;
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--ink);
}

.split-headline .h2-line.accent {
  color: var(--red);
}

.split-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 12px 0;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  color: inherit;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.icon--sm {
  width: 20px;
  height: 20px;
}

.icon--md {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--red);
}

.lead {
  font-size: 1.15rem;
  font-weight: 600;
}

.section-intro {
  color: #aaa;
  max-width: 720px;
}

section.dark .section-intro {
  color: #aaa;
}

.light .section-intro {
  color: #666;
}

/* Visual blocks */
.visual {
  position: relative;
  min-height: 100%;
  height: auto;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.visual::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.35;
}

.visual-about {
  background: url("assets/flying-bbq-2025-16-von-22-scaled.jpg") center / cover no-repeat;
}

.visual-catering {
  background: url("assets/hero.jpg") center / cover no-repeat;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.cards article {
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.3s, box-shadow 0.3s;
}

.light .cards article {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cards article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.cards article:hover .card-img img {
  transform: scale(1.05);
}

.card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #461212, #111);
}

.card-img-placeholder span {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.card-body {
  padding: 24px;
}

.cards h3 {
  font-size: 1.3rem;
  margin: 0 0 8px;
}

.cards p {
  color: #aaa;
  margin: 0 0 8px;
}

.light .cards p {
  color: #666;
}

.cards small {
  color: #e45c55;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* Foodtruck section bg */
#foodtruck {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.75)),
    url("assets/foodtruck.jpg") center / cover no-repeat;
}

#foodtruck .cards article {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.card-featured {
  position: relative;
}

.card-menu-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  padding: 0;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transform: rotate(-12deg);
  transition: background 0.2s, transform 0.2s;
}

.card-menu-btn:hover {
  background: var(--red2);
  transform: rotate(-12deg) scale(1.04);
}

.light .btn.ghost {
  border-color: #bbb;
  color: var(--ink);
}

.light .btn.ghost:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Catering notes */
.note {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #cfc6bf;
}

.note b {
  display: block;
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 3px;
}

.note span {
  color: #666;
  font-size: 0.92rem;
}

ul {
  padding-left: 20px;
}

li {
  margin: 10px 0;
}

.cards-rental .card-body p:last-child {
  margin-bottom: 0;
}

/* Vermietung */
#vermietung {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.8)),
    url("assets/vermietung.jpg") center / cover no-repeat;
}

#vermietung .cards article {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

/* Gallery */
.gallery {
  background: var(--cream);
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-carousel {
  position: relative;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-viewport {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  --gallery-gap: 12px;
  display: flex;
  gap: var(--gallery-gap);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.gallery-slide:hover img {
  transform: scale(1.04);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.gallery-dots button.active {
  background: var(--red);
  transform: scale(1.25);
}

@media (min-width: 768px) {
  .gallery-slide {
    flex: 0 0 calc((100% - (var(--gallery-gap) * 2)) / 3);
  }
}

@media (min-width: 1100px) {
  .gallery-slide {
    flex: 0 0 calc((100% - (var(--gallery-gap) * 3)) / 4);
  }
}

/* Process */
.center {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
  position: relative;
}

.step {
  position: relative;
  text-align: center;
  padding: 36px 28px 32px;
  background: #f7f7f7;
  border-radius: var(--radius);
  border: 1px solid rgba(143, 23, 23, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8.5vw, 6rem);
  line-height: 0.9;
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.step h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  margin: 0 0 10px;
}

.step p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact */
.contact {
  background: linear-gradient(145deg, #5c0f0f 0%, var(--red) 45%, #a5201c 100%);
  color: #fff;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.contact h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  color: #fff;
}

.contact-inner > .reveal > p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
}

.contact-inner {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: center;
}

.contact-form-wrap {
  background: #fff;
  color: var(--ink);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.contact-quick {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s, opacity 0.2s;
}

.contact-link:hover {
  color: rgba(255, 255, 255, 0.85);
  opacity: 0.92;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-form select:invalid {
  color: #999;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(143, 23, 23, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 4px;
  animation: cta-pulse 2.8s ease-in-out infinite;
}

.contact-form .btn:hover {
  animation: none;
}

.contact-form .btn:disabled {
  opacity: 0.65;
  cursor: wait;
  animation: none;
}

.botcheck {
  display: none;
}

.form-status {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}

.form-status.success {
  color: #1a7f4b;
}

.form-status.error {
  color: #b62420;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #555;
  cursor: pointer;
}

.form-consent input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--red);
}

.form-consent a {
  color: var(--red);
  text-decoration: underline;
}

.form-consent a:hover {
  color: var(--red2);
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(143, 23, 23, 0.3);
  }
  50% {
    box-shadow: 0 6px 24px rgba(143, 23, 23, 0.55);
  }
}

/* Footer */
.footer {
  background: #050505;
  color: #aaa;
  padding: 55px 20px 25px;
  text-align: center;
}

.footer-inner {
  display: grid;
  gap: 20px;
  justify-content: center;
}

.footer-logo img {
  width: 100px;
  margin: 0 auto 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #666;
}

/* Scroll reveal — animate children; whole block for empty/card elements */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visual,
.reveal:is(article),
.reveal.gallery-carousel,
.reveal.step,
.reveal.split-content,
.reveal.contact-form-wrap {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visual {
  transform: translateY(24px) scale(1.05);
  transition: opacity 0.75s ease, transform 0.85s ease;
}

.cards .reveal:is(article):nth-child(1) { transition-delay: 0s; }
.cards .reveal:is(article):nth-child(2) { transition-delay: 0.12s; }
.cards .reveal:is(article):nth-child(3) { transition-delay: 0.24s; }

.reveal.visual.visible,
.reveal:is(article).visible,
.reveal.gallery-carousel.visible,
.reveal.step.visible,
.reveal.split-content.visible,
.reveal.contact-form-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visual.visible {
  transform: translateY(0) scale(1);
}

.reveal.visual > *,
.reveal:is(article) > *,
.reveal.gallery-carousel > *,
.reveal.step > *,
.reveal.split-content > *,
.reveal.contact-form-wrap > * {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal > *:nth-child(2) { transition-delay: 0.08s; }
.reveal > *:nth-child(3) { transition-delay: 0.16s; }
.reveal > *:nth-child(4) { transition-delay: 0.24s; }
.reveal > *:nth-child(5) { transition-delay: 0.32s; }
.reveal > *:nth-child(6) { transition-delay: 0.40s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.35)),
      url("assets/hero.jpg") center / cover no-repeat;
  }

  .reveal > *,
  .reveal.visual,
  .reveal:is(article),
  .reveal.gallery-carousel,
  .reveal.step,
  .reveal.split-content,
  .reveal.contact-form-wrap {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-enter > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .contact-form .btn {
    animation: none;
  }

  .gallery-track {
    transition: none;
  }
}

/* Mobile */
@media (max-width: 800px) {
  nav {
    display: none;
  }

  .menu {
    display: flex;
  }

  .nav.open nav {
    display: flex;
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    background: #111;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
    z-index: 100;
  }

  .hero {
    min-height: 650px;
  }

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

  .split,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .visual {
    min-height: 280px;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .visual::after {
    display: none;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .light,
  section.dark,
  .contact,
  .process,
  .gallery {
    padding: 75px 0;
  }
}

/* Legal pages */
.legal-page {
  padding: 80px 0 100px;
  min-height: 100vh;
}

.legal-wrap {
  max-width: 720px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 600;
}

.legal-back:hover {
  text-decoration: underline;
}

.legal-header h1 {
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  margin: 0 0 12px;
}

.legal-intro {
  color: #666;
  margin-bottom: 40px;
}

.legal-content section {
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 0 0 12px;
  color: var(--red);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 20px 0 10px;
  color: var(--ink);
}

.legal-content ul {
  margin: 0 0 12px;
  padding-left: 1.25rem;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content a {
  color: var(--red);
  text-decoration: underline;
}
