/* ================================================
   HAPPYBEATS - MAIN STYLESHEET
   ================================================ */

/* ================================================
   FONT DEFINITIONS
   ================================================ */
@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-v15-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-v15-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-v15-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-v15-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-v15-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/plus-jakarta-sans-v12-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/plus-jakarta-sans-v12-latin-300italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/plus-jakarta-sans-v12-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/plus-jakarta-sans-v12-latin-500italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/plus-jakarta-sans-v12-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/plus-jakarta-sans-v12-latin-600italic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/plus-jakarta-sans-v12-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/plus-jakarta-sans-v12-latin-700italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ================================================
   GENERAL STYLES
   ================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

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

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

/* ================================================
   HEADER & NAVIGATION
   ================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  z-index: 3000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: padding 0.3s ease;
}

header.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
  transition: height 0.3s ease;
}

header.scrolled .logo img {
  height: 55px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f40903;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #f40903;
}

.nav-cta {
  background: linear-gradient(135deg, #f40903 0%, #ff0000 100%);
  color: #fff !important;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 9, 3, 0.2);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(244, 9, 3, 0.35);
  color: #fff !important;
}

.nav-cta::after {
  display: none;
}

/* ================================================
   MOBILE MENU
   ================================================ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 3002;
  position: relative;
}

.hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
  -webkit-transform: translateY(9.5px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
  -webkit-transform: translateY(-9.5px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Hide submenu items on desktop */
.submenu-items {
  display: none;
}

/* ================================================
   FOOTER
   ================================================ */
footer { background: #1a1a1a; color: #fff; padding: 4rem 3rem 2rem; }
.footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,.7); line-height: 1.8; margin-top: 1rem; }
.footer-section h4 { margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: .8rem; }
.footer-section a { color: rgba(255,255,255,.7); transition: color .3s; }
.footer-section a:hover { color: #ff0000; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { color: rgba(255,255,255,.5); font-size: .9rem; }

/* ================================================
   RESPONSIVE - TABLET
   ================================================ */
@media (max-width: 1024px) and (min-width: 769px) {
  nav {
    padding: 0 2rem;
  }
  
  nav ul {
    gap: 1.5rem;
  }
  
  nav a {
    font-size: 0.9rem;
  }
}

/* ================================================
   RESPONSIVE - MOBILE
   ================================================ */
@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
  }
  
  .logo img {
    height: 55px;
  }
  
  header.scrolled .logo img {
    height: 50px;
  }
  
  .mobile-menu-btn {
    display: block !important;
    -webkit-tap-highlight-color: transparent;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    padding: 80px 0 20px;
    box-shadow: -3px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3001;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
    list-style: none;
    flex-direction: column;
  }
  
  nav ul.active {
    right: 0 !important;
  }
  
  .submenu-items {
    display: block;
  }
  
  nav ul li {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  
  nav ul li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
  }
  
  nav ul li a:hover,
  nav ul li a:active {
    background: #f9f9f9;
    border-left-color: #f40903;
    color: #f40903;
  }
  
  .submenu-items a {
    padding-left: 3rem !important;
    font-size: 0.9rem !important;
    color: #999 !important;
    font-weight: 400 !important;
    background: #fafafa !important;
    border-left-color: transparent !important;
  }
  
  .submenu-items a:hover,
  .submenu-items a:active {
    color: #f40903 !important;
    background: #f5f5f5 !important;
    border-left-color: #f40903 !important;
  }
  
  .nav-cta {
    margin: 1rem 1.5rem 0 !important;
    padding: 0.75rem 1.5rem !important;
    text-align: center;
    display: block;
    border-radius: 8px;
    border-left: none !important;
    box-shadow: 0 4px 12px rgba(244, 9, 3, 0.25);
    font-weight: 600 !important;
  }
  
  .nav-cta:hover {
    background: linear-gradient(135deg, #d00802 0%, #e60000 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(244, 9, 3, 0.35);
  }
  
  nav a::after {
    display: none;
  }
  
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================
   Footer (centralized)
   ========================= */
footer {
  background:#1a1a1a;
  color:#fff;
  padding:4rem 3rem 2rem;
}
.footer-content {
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:4rem;
  margin-bottom:3rem;
}
.footer-brand p {
  color:rgba(255,255,255,0.7);
  line-height:1.8;
  margin-bottom:2rem;
}
.footer-section h4 {
  font-size:1.1rem;
  margin-bottom:1.5rem;
  color:#fff;
}
.footer-section ul {
  list-style:none;
}
.footer-section ul li {
  margin-bottom:.8rem;
}
.footer-section a {
  color:rgba(255,255,255,0.7);
  transition:color .3s;
  font-size:.95rem;
}
.footer-section a:hover {
  color:#f40903;
}
.footer-bottom {
  max-width:1400px;
  margin:0 auto;
  padding-top:2rem;
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
  color:rgba(255,255,255,0.5);
  font-size:.9rem;
}
@media (max-width:1024px){
  .footer-content{grid-template-columns:1fr;gap:2rem;}
}


/* =========================
   HEADER LOGO – FIXED SIZE
   ========================= */
header .logo img {
  height: 64px;
  width: auto;
  max-height: none;
  min-height: 64px;
  display: block;
  transition: height .25s ease;
}

/* =========================
   HEADER SHRINK ON SCROLL
   ========================= */
#header nav {
  transition: padding .2s ease;
}

#header.scrolled nav {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

#header.scrolled .logo img {
  height: 52px;
  min-height: 52px;
}

/* =========================
   HEADER SHRINK ON SCROLL
   ========================= */

/* Normal state: slightly roomier */
#header nav {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  transition: padding .25s ease;
}

/* Scrolled: smaller */
#header.scrolled nav {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

/* Logo shrinks together */
#header.scrolled .logo img {
  height: 54px;
  min-height: 54px;
}

/* =========================
   HEADER TUNING (DESKTOP)
   ========================= */

/* Header etwas kompakter */
#header nav {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

/* Logo bewusst größer */
header .logo img {
  height: 68px;
  min-height: 68px;
}

/* Menü-Schrift Desktop größer */
@media (min-width: 1024px) {
  #header nav ul li a {
    font-size: 1.05rem;
    font-weight: 500;
  }
}

/* Shrink-Zustand */
#header.scrolled nav {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

#header.scrolled .logo img {
  height: 56px;
  min-height: 56px;
}

/* ================================================
   GLOBAL RESPONSIVE OPTIMIZATION (SITE-WIDE)
   - Keeps existing design/content
   - Improves mobile/tablet layout robustness
   ================================================ */

/* Improve tap targets */
@media (max-width: 768px) {
  button, .nav-cta, nav ul li a {
    min-height: 44px;
  }
}

/* Safer off-canvas width on small devices */
@media (max-width: 768px) {
  nav ul {
    width: min(85vw, 320px);
  }
}

/* Section paddings & typography scaling (override inline styles via higher specificity) */
@media (max-width: 1024px) {
  body .hero,
  body .hero-booking {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  body .booking-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 768px) {
  /* HERO areas */
  body .hero {
    padding: 120px 1.25rem 70px;
    min-height: auto;
  }
  body .hero-booking {
    padding: 120px 1.25rem 60px;
  }

  body .hero-content h1,
  body .hero-booking h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
    line-height: 1.15;
  }

  body .hero-content p {
    font-size: 1.05rem;
  }

  body .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  body .hero-buttons a,
  body .hero-buttons button {
    width: 100%;
  }

  /* Common section headers */
  body .section-header .section-title,
  body .section-title {
    font-size: clamp(1.5rem, 6vw, 2.1rem);
    line-height: 1.2;
  }

  /* Grids -> single column on mobile */
  body .services-grid,
  body .features-grid,
  body .portfolio-grid,
  body .about-grid,
  body .contact-grid,
  body .steps-grid,
  body .trust-grid,
  body .extras-grid {
    grid-template-columns: 1fr !important;
  }

  /* Forms: avoid side-by-side rows */
  body .form-row {
    grid-template-columns: 1fr !important;
  }

  /* Booking containers: reduce heavy padding */
  body .booking-container,
  body .booking-form {
    padding: 1.5rem !important;
  }

  /* Sticky price boxes: disable sticky on small screens */
  body .live-price-sticky {
    position: static !important;
    top: auto !important;
    width: 100% !important;
    margin-top: 1.25rem;
  }

  /* Footer spacing */
  footer {
    padding: 3rem 1.5rem 1.5rem;
  }
}

/* Tablet: prefer 2 columns where it makes sense */
@media (max-width: 1024px) and (min-width: 769px) {
  body .services-grid,
  body .features-grid,
  body .portfolio-grid,
  body .steps-grid,
  body .trust-grid,
  body .extras-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body .about-grid,
  body .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Header/logo: stabilize sizes across breakpoints (avoid conflicting rules) */
header .logo img {
  height: clamp(52px, 6vw, 68px);
  min-height: 52px;
  width: auto;
}

#header.scrolled .logo img {
  height: clamp(48px, 5vw, 56px);
  min-height: 48px;
}

/* Prevent content from being hidden behind fixed header when jumping to anchors */
:target {
  scroll-margin-top: 110px;
}
@media (max-width: 768px) {
  :target { scroll-margin-top: 90px; }
}

/* =================================================
   INDEX MOBILE TUNING (CSS-only overrides)
   - keeps content unchanged, improves responsiveness
   ================================================= */
@media (max-width: 768px) {
  /* Mobile page padding consistency */
  :root { --hb-pad: 1.25rem; }
  .hero,
  .about-intro-section,
  .services-section,
  .about-section,
  .features-section,
  .portfolio-section,
  .cta-section,
  .contact-section {
    padding-left: var(--hb-pad) !important;
    padding-right: var(--hb-pad) !important;
  }
  /* Prevent inner max-width blocks from adding uneven side padding */
  .section-header,
  .hero-grid,
  .services-grid,
  .about-grid,
  .features-grid,
  .portfolio-grid,
  .cta-content,
  .contact-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Ensure section headings/descriptions align consistently */
  .section-header,
  .section-header * {
    text-align: center !important;
  }


  /* Typography consistency for "normal text" */
  body { font-size: 16px; }
  p,
  .section-desc,
  .service-desc,
  .about-text,
  .feature-desc,
  .portfolio-section .section-desc,
  .cta-content p,
  .contact-section .section-desc {
    font-size: 1rem !important;
    line-height: 1.75 !important;
  }

  /* HERO: slightly less top space (but safe vs fixed header) */
  .hero {
    padding-top: calc(130px + env(safe-area-inset-top)) !important;
  }

  /* SERVICES: keep images fully visible WITHOUT "frame" by removing fixed height */
  .services-grid { grid-template-columns: 1fr !important; }

  .service-visual {
    height: auto !important;
    background: transparent !important;
  }
  .service-visual::after { display: none !important; }

  .service-visual img {
    height: auto !important;
    object-fit: contain !important;
    background: transparent !important;
  }

  /* Center only the titles + short text, keep feature bullets readable */
  .service-title,
  .service-desc { text-align: center !important; }

  .service-features {
    margin: 1.25rem auto 1.75rem !important; /* less gap to CTA, more below */
    max-width: 28rem;
  }

  .service-link {
    display: inline-flex !important;
    justify-content: center !important;
    width: 100%;
  }

  /* ABOUT (Story): remove horizontal scroll + tighten spacing */
  .about-section {
    padding: 4.75rem 1.5rem 3.75rem !important; /* reduces gap to next section */
  }
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Use the mobile image block and make it "no black frame" */
  .about-image { display: none !important; }
  .about-image-mobile {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    background: #fff !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.08) !important;
    margin: 0.25rem 0 1.5rem !important;
  }
  .about-image-mobile img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important; /* no black bars */
    background: #fff !important;
    display: block !important;
  }

  .about-content h2 {
    text-align: center !important;
    margin-bottom: 1rem !important;
  }
  .about-subtitle {
    text-align: center !important;
    margin-bottom: 1.25rem !important;
  }
  .about-text {
    margin-bottom: 1rem !important;
  }
  .about-image-mobile + .about-text {
    margin-top: 0.25rem !important;
  }
  .about-text + .about-highlights {
    margin-top: 1.75rem !important; /* more air before highlights */
  }


  .about-highlights {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-top: 1.25rem !important;
    margin-bottom: 2rem !important;
  }

    /* Tighten spacing between story end and next section */
  .about-section { padding-bottom: 4rem !important; }
  .features-section { padding-top: 4rem !important; }

/* FEATURES (Warum): keep swipe, but make cards smaller */
  .features-grid {
    display: flex !important;
    gap: 1rem !important;
    overflow-x: auto !important;
    padding: 0.25rem 0.25rem 0.75rem !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .features-grid::-webkit-scrollbar { display: none; }

  .feature-card {
    flex: 0 0 86vw !important;
    max-width: 86vw !important;
    padding: 1.75rem 1.25rem !important;
    border-radius: 22px !important;
    scroll-snap-align: start;
  }
  .feature-title { font-size: 1.05rem !important; }
  .feature-desc { font-size: 1rem !important; }

  /* PORTFOLIO (Event-Bilder): swipe + consistent size, no "bars" on landscape */
  .portfolio-grid {
    display: flex !important;
    gap: 1rem !important;
    overflow-x: auto !important;
    padding: 0.25rem 0.25rem 0.75rem !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .portfolio-grid::-webkit-scrollbar { display: none; }

  .portfolio-item {
    flex: 0 0 86vw !important;
    max-width: 86vw !important;
    height: auto !important;
    aspect-ratio: 3 / 2;
    border-radius: 18px !important;
    background: #0000 !important;
    scroll-snap-align: start;
  }
  .portfolio-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* avoids visible "frames" */
    display: block !important;
  }
}


/* =================================================
   FINAL MOBILE LOCK – HERO + HEADLINES ONLY
   ================================================= */
@media (max-width: 768px) {

  /* HERO – restore EXACT spacing that was confirmed as correct */
  body .hero {
    padding-top: calc(155px + env(safe-area-inset-top)) !important;
  }

  /* Headline sizing – keep Wir sind & Story hinter identical */
  body .about-intro-section h2,
  body .about-intro-section .section-title,
  body .about-section h2,
  body .about-section .section-title {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }
}

/* =================================================
   FEIERPAKETE.HTML MOBILE RESPONSIVE
   (Matches index.html mobile design exactly)
   ================================================= */
@media (max-width: 1200px) {
  /* Hero Grid: Stack on tablet */
  body .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 4rem !important;
  }
  
  /* Price badge: Remove absolute positioning */
  body .hero-price-badge {
    position: static !important;
    margin: 2rem auto 0 !important;
  }
  
  /* Grids: 2 columns on tablet */
  body .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  body .trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* Steps: 2 columns on tablet */
  body .steps-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  body .step::after {
    display: none !important;
  }
  
  /* Package includes: Single column */
  body .package-includes {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  /* Hero section - EXACT match to index.html */
  body .hero {
    padding: 160px 2rem 80px !important;
    min-height: auto !important;
  }
  
  /* Hide desktop image, show mobile image */
  body .hero-visual-desktop {
    display: none !important;
  }
  
  body .hero-visual-mobile {
    display: block !important;
    width: 100% !important;
    margin: 2rem 0 !important;
    position: relative !important;
  }
  
  /* Hide price badge on mobile */
  body .hero-visual-mobile .hero-price-badge {
    display: none !important;
  }
  
  body .hero-grid {
    grid-template-columns: 1fr !important;
  }
  
  body .hero-content h1 {
    font-size: 1.9rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important; /* Reduced from 2rem */
  }
  
  body .hero-visual-mobile {
    margin: 1rem 0 !important; /* Reduced from 2rem */
  }
  
  body .hero-content p {
    font-size: 1.1rem !important;
    margin-bottom: 1.5rem !important; /* Reduced from 3rem */
  }
  
  /* Reduce spacing between benefit items */
  body .hero-benefits {
    gap: 0.5rem !important; /* Reduced from 1rem */
    margin-bottom: 2rem !important;
  }
  
  body .hero-benefit {
    padding: 0.3rem 0 !important; /* Reduced vertical padding */
    padding-left: 2rem !important; /* Keep left padding for checkmark */
  }
  
  body .hero-buttons {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.8rem !important;
  }
  
  body .hero-buttons .btn-primary,
  body .hero-buttons .btn-secondary {
    width: 100% !important;
    text-align: center !important;
  }
  
  /* Section titles - EXACT match to index.html */
  body .section-title {
    font-size: 2rem !important;
  }
  
  body .section-desc {
    font-size: 1rem !important;
  }
  
  /* Reduce spacing between section header and form */
  body .booking-section .section-header {
    margin-bottom: 1rem !important; /* Even smaller */
  }
  
  body .booking-section .section-desc {
    margin-bottom: 0 !important;
  }
  
  /* All sections: Padding like index.html */
  body .trust-section,
  body .whats-included-section,
  body .how-it-works,
  body .package-section,
  body .booking-section,
  body .faq-section {
    padding: 6rem 2rem !important;
  }
  
  body .cta-final {
    padding: 6rem 2rem !important;
  }
  
  /* Trust grid: Single column */
  body .trust-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Features grid: Single column */
  body .features-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Steps grid: Single column */
  body .steps-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Package container */
  body .package-container {
    padding: 3rem 2rem !important;
  }
  
  body .package-title {
    font-size: 2rem !important;
  }
  
  body .price-main {
    font-size: 2.5rem !important;
  }
  
  /* Booking form */
  body .booking-form {
    padding: 2rem 0.5rem !important; /* Minimal side padding */
  }
  
  /* Make form inputs wider */
  body .form-group {
    margin-left: -0.3rem !important;
    margin-right: -0.3rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  body .form-group input,
  body .form-group textarea,
  body .form-group select {
    padding: 1.1rem 1.2rem !important;
    font-size: 1rem !important;
    width: calc(100% + 0.6rem) !important;
    max-width: calc(100% + 0.6rem) !important;
    box-sizing: border-box !important;
  }
  
  /* Make Event-Datum field SAME width as others */
  body .form-group input[type="date"],
  body #eventDate {
    width: calc(100% + 0.6rem) !important;
    max-width: calc(100% + 0.6rem) !important;
    box-sizing: border-box !important;
  }
  
  body .form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  
  body .form-row .form-group {
    margin-bottom: 1.5rem !important;
  }
  
  /* Delivery info box */
  body .delivery-info {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* More space after newsletter checkbox before submit button */
  body .checkbox-group {
    margin-bottom: 2rem !important;
  }
  
  /* Style Pflichtfeld text */
  body .form-footer {
    margin-top: 1rem !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    color: #666 !important;
  }
  
  /* Submit button */
  body .submit-btn {
    margin-top: 0.5rem !important;
  }
  
  body .form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important; /* Remove gap, use margin-bottom instead */
  }
  
  body .form-row .form-group {
    margin-bottom: 1.5rem !important; /* Same spacing for row items */
  }
  
  /* Make price summary box even wider - extend beyond form */
  body .price-summary {
    padding: 2rem 1.5rem !important;
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
    width: calc(100% + 3rem) !important;
  }
  
  body .price-row {
    padding: 0.9rem 0 !important;
    font-size: 0.95rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  body .price-total {
    padding-top: 1.2rem !important;
    margin-top: 0.8rem !important;
    font-size: 1.3rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  /* FAQ */
  body .faq-question {
    font-size: 1rem !important;
    padding: 1.2rem 1.5rem !important;
  }
  
  body .faq-answer-content {
    padding: 0 1.5rem 1.2rem !important;
    font-size: 0.95rem !important;
  }
  
  /* CTA Section - EXACT match to index.html */
  body .cta-content h2 {
    font-size: 2rem !important;
  }
  
  body .cta-content p {
    font-size: 1.1rem !important;
  }
}
