/* ============================================================
   HANSA HÜPFBURGEN – Global Styles
   Colors from brand: cream bg, teal, coral, yellow, dark blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --cream: #FDF6EC;
  --cream-dark: #F5EDE0;
  --teal: #2BBCB3;
  --teal-dark: #1FA39B;
  --teal-light: #E0F7F5;
  --coral: #E8573A;
  --coral-light: #FDEAE6;
  --yellow: #F5C518;
  --yellow-light: #FFF8DC;
  --orange: #F5A623;
  --blue-dark: #1B3A5C;
  --blue-navy: #0F2B4A;
  --text: #2C3E50;
  --text-light: #6B7D8E;
  --white: #FFFFFF;
  --shadow: 0 8px 32px rgba(27,58,92,.1);
  --shadow-lg: 0 16px 48px rgba(27,58,92,.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
  --font-display: 'Fredoka', cursive;
  --font-body: 'Nunito', sans-serif;
  --nav-height: 80px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
section, header, footer, main, div { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,246,236,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(43,188,179,.15);
  height: var(--nav-height);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(27,58,92,.1); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; }
.nav-logo span { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--blue-dark); }
.nav-logo .yellow { color: var(--yellow); }
.nav-logo .coral { color: var(--coral); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-weight: 700; font-size: .95rem; color: var(--blue-dark);
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 3px; background: var(--teal); border-radius: 3px; transition: width .3s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--teal); }

.nav-cta {
  background: var(--coral); color: var(--white); padding: 10px 22px;
  border-radius: 50px; font-weight: 800; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 16px rgba(232,87,58,.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,87,58,.4); }
.nav-cta, .nav-cta:hover { color: var(--white) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.hamburger span { display: block; width: 26px; height: 3px; background: var(--blue-dark); border-radius: 3px; transition: .3s; }

/* Mobile nav */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--cream); flex-direction: column; gap: 0; padding: 0;
    max-height: 0; overflow: hidden; transition: max-height .4s ease;
    border-bottom: 2px solid rgba(43,188,179,.15);
  }
  .nav-links.open { max-height: 400px; }
  .nav-links a { display: block; padding: 16px 24px; width: 100%; border-bottom: 1px solid var(--cream-dark); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 16px 24px; text-align: center; justify-content: center; }
}

/* ── HERO SECTION ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding-top: var(--nav-height);
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video, .hero-video-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(253,246,236,.93) 0%, rgba(253,246,236,.82) 40%, rgba(253,246,236,.95) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 60px 24px;
  max-width: 800px; text-shadow: 0 1px 8px rgba(253,246,236,.8);
}
.hero-badge {
  display: inline-block; background: var(--teal); color: var(--white);
  padding: 6px 20px; border-radius: 50px; font-weight: 700; font-size: .85rem;
  margin-bottom: 20px; letter-spacing: .5px;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; color: var(--blue-dark); line-height: 1.1; margin-bottom: 8px;
}
.hero h1 .yellow { color: var(--yellow); text-shadow: 2px 2px 0 rgba(0,0,0,.08); }
.hero h1 .coral { color: var(--coral); }
.hero-slogan {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--teal-dark); font-weight: 600; margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem; color: var(--blue-dark); font-weight: 700; max-width: 560px;
  margin: 0 auto 32px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
  border-radius: 50px; font-family: var(--font-body); font-weight: 800;
  font-size: 1rem; border: none; cursor: pointer; transition: all .3s;
  text-decoration: none;
}
.btn-coral {
  background: var(--coral); color: var(--white);
  box-shadow: 0 6px 20px rgba(232,87,58,.3);
}
.btn-coral:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(232,87,58,.4); }
.btn-teal {
  background: var(--teal); color: var(--white);
  box-shadow: 0 6px 20px rgba(43,188,179,.3);
}
.btn-teal:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(43,188,179,.4); }
.btn-outline {
  background: transparent; color: var(--teal); border: 2.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-yellow {
  background: var(--yellow); color: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(245,197,24,.3);
}
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(245,197,24,.4); }

/* ── WAVE SVG DIVIDERS ──────────────────────────────────── */
.wave-divider { display: block; width: 100%; line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: auto; }

/* ── SECTION STYLES ─────────────────────────────────────── */
section { position: relative; }

.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-teal { background: var(--teal); color: var(--white); }
.section-teal-light { background: var(--teal-light); }

.section-padding { padding: 80px 0; }
@media (max-width: 768px) { .section-padding { padding: 50px 0; } }

.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; text-align: center; margin-bottom: 12px; line-height: 1.2;
}
.section-subtitle {
  text-align: center; font-size: 1.05rem; color: var(--text-light);
  max-width: 600px; margin: 0 auto 48px; line-height: 1.7;
}
.section-teal .section-subtitle { color: rgba(255,255,255,.85); }

/* ── SERVICE CARDS ──────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 36px 28px;
  text-align: center; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s;
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.service-icon {
  width: 72px; height: 72px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 20px;
  font-size: 2rem;
}
.icon-teal { background: var(--teal-light); color: var(--teal); }
.icon-coral { background: var(--coral-light); color: var(--coral); }
.icon-yellow { background: var(--yellow-light); color: var(--orange); }
.icon-blue { background: #E8F0FE; color: var(--blue-dark); }

.service-card h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--blue-dark); margin-bottom: 10px;
}
.service-card p { font-size: .95rem; color: var(--text-light); line-height: 1.6; }

/* ── ABOUT / WHY US ─────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-img {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

.about-text h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--blue-dark); margin-bottom: 16px;
}
.about-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }

.usp-list { margin-top: 24px; }
.usp-item {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px;
}
.usp-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.usp-item h4 { font-weight: 800; color: var(--blue-dark); margin-bottom: 2px; }
.usp-item p { font-size: .9rem; color: var(--text-light); margin: 0; }

/* ── GALLERY ────────────────────────────────────────────── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform .3s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 100%; height: auto; display: block; }

/* ── CATERING ───────────────────────────────────────────── */
.catering-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.catering-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .3s;
}
.catering-card:hover { transform: translateY(-6px); }
.catering-card-img { height: 200px; overflow: hidden; }
.catering-card-img img { width: 100%; height: 100%; object-fit: cover; }
.catering-card-body { padding: 24px; }
.catering-card h3 {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--blue-dark); margin-bottom: 8px;
}
.catering-price {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--coral); margin: 12px 0;
}
.catering-includes {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.catering-tag {
  background: var(--teal-light); color: var(--teal-dark); padding: 4px 12px;
  border-radius: 50px; font-size: .8rem; font-weight: 700;
}

/* ── BOOKING INFO ───────────────────────────────────────── */
.booking-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.booking-step {
  text-align: center; padding: 32px 20px;
}
.step-number {
  width: 56px; height: 56px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 16px;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--white); background: var(--teal);
}
.booking-step h3 {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--blue-dark); margin-bottom: 8px;
}
.booking-step p { font-size: .9rem; color: var(--text-light); }

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-weight: 700; font-size: .85rem; color: var(--blue-dark);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem;
  color: var(--text); background: var(--white); transition: border-color .3s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 120px; }

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

.contact-info-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 36px;
  box-shadow: var(--shadow);
}
.contact-info-item {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.contact-info-icon {
  width: 52px; height: 52px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.contact-info-item h4 { font-weight: 800; color: var(--blue-dark); margin-bottom: 2px; }
.contact-info-item p { font-size: .9rem; color: var(--text-light); margin: 0; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius); margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04); overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; cursor: pointer; font-weight: 700;
  color: var(--blue-dark); font-size: 1rem; border: none; background: none;
  width: 100%; text-align: left; font-family: var(--font-body);
}
.faq-question .faq-toggle {
  width: 32px; height: 32px; border-radius: 50%; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.2rem; transition: transform .3s; flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 18px; color: var(--text-light); line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--blue-navy); color: rgba(255,255,255,.7); padding: 60px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { margin-top: 16px; font-size: .9rem; line-height: 1.7; }
.footer h4 {
  font-family: var(--font-display); color: var(--white); font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,.7); transition: color .3s; }
.footer ul a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  text-align: center; font-size: .85rem;
}

/* ── CONFETTI DECORATIONS ───────────────────────────────── */
.confetti-dot {
  position: absolute; border-radius: 50%; opacity: .3; pointer-events: none;
}

/* ── FLOATING PHONE BUTTON ──────────────────────────────── */
.floating-phone {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--coral); color: var(--white); width: 60px; height: 60px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 6px 24px rgba(232,87,58,.4);
  transition: transform .3s; text-decoration: none;
  animation: pulse-phone 2s infinite;
}
.floating-phone:hover { transform: scale(1.1); }
@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 6px 24px rgba(232,87,58,.4); }
  50% { box-shadow: 0 6px 32px rgba(232,87,58,.6), 0 0 0 10px rgba(232,87,58,.1); }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-anim { animation: float 4s ease-in-out infinite; }

@keyframes spin { to { transform: rotate(360deg); } }
