/* =============================================
   HÜPFSPASS HAMBURG – Stylesheet
   ============================================= */

/* === VARIABLEN === */
:root {
  --yellow: #FFB800;
  --yellow-hover: #E6A500;
  --yellow-light: #FFF8E7;
  --blue: #1565C0;
  --blue-hover: #0D47A1;
  --blue-light: #E3F2FD;
  --blue-dark: #0D47A1;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --transition: all 0.25s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* === CONTAINER === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPOGRAFIE === */
h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--text);
}

.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

/* === NAVIGATION === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.logo:hover {
  color: var(--yellow-hover);
}

.logo span {
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}

.nav-links a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.nav-links a.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-links .btn-nav {
  background: var(--yellow);
  color: var(--text);
  font-weight: 600;
  padding: 10px 20px;
}

.nav-links .btn-nav:hover {
  background: var(--yellow-hover);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.08);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 184, 0, 0.2);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  animation: bounce 2s infinite;
  position: relative;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* === SECTIONS === */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow-hover);
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.bg-light {
  background: var(--blue-light);
}

.bg-yellow {
  background: var(--yellow-light);
}

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* === FEATURES (Startseite) === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* === SO FUNKTIONIERT'S === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.loading-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}

/* === FILTER-LEISTE === */
.filter-section {
  background: var(--bg);
  padding: 20px 0 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-chip {
  padding: 6px 14px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.filter-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.filter-chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.filter-date-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-date-row input[type="date"] {
  padding: 6px 10px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  background: white;
}

.filter-date-row input[type="date"]:focus {
  outline: none;
  border-color: var(--blue);
}

.filter-reset-date {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  display: inline-flex;
  align-items: center;
}

.filter-reset-date:hover { color: var(--text); }

@media (max-width: 600px) {
  .filter-bar { gap: 16px; }
  .filter-date-row input[type="date"] { width: 130px; }
}

/* === BOUNCY CASTLE CARDS (Startseite Vorschau + Hüpfburgen-Seite) === */
.burgen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.burg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.burg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.burg-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
}

.burg-img.klein {
  background: linear-gradient(135deg, #FFF3CD, #FFE082);
}

.burg-img.mittel {
  background: linear-gradient(135deg, #BBDEFB, #90CAF9);
}

.burg-img.gross {
  background: linear-gradient(135deg, #C8E6C9, #A5D6A7);
}

.burg-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--blue);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.burg-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.burg-body h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.burg-size {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.burg-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.burg-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.burg-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.burg-price {
  background: var(--yellow-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: auto;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.price-row:last-child {
  margin-bottom: 0;
}

.price-row .label {
  color: var(--text-muted);
}

.price-row .value {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

.price-row .value.highlight {
  color: var(--blue);
  font-size: 1.1rem;
}

.burg-card .btn {
  justify-content: center;
}

/* === PREISTABELLE === */
.pricing-section {
  padding: 80px 0;
}

.pricing-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-table th {
  background: var(--blue);
  color: var(--white);
  padding: 18px 24px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.pricing-table th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.pricing-table th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.pricing-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:nth-child(even) td {
  background: var(--bg);
}

.pricing-table .price {
  font-weight: 700;
  color: var(--blue);
  font-size: 1rem;
}

.pricing-table .weekend {
  font-weight: 700;
  color: var(--yellow-hover);
  font-size: 1rem;
}

/* === INFO BOXES === */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--yellow);
}

.info-box h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-box p {
  font-size: 0.9rem;
}

/* === KONTAKT-INFO === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-item a {
  color: var(--blue);
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-map {
  background: linear-gradient(135deg, var(--blue-light), var(--yellow-light));
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow);
  font-size: 1rem;
  color: var(--text-muted);
}

.contact-map .map-icon {
  font-size: 4rem;
}

/* === FORMULAR === */
.form-section {
  padding: 80px 0;
}

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-group label span {
  color: var(--blue);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #E53E3E;
}

.form-group .error-msg {
  font-size: 0.8rem;
  color: #E53E3E;
  display: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  background: var(--yellow-light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 24px;
  border-left: 4px solid var(--yellow);
}

.rain-hint {
  background: #EFF6FF;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--text);
  border-left: 4px solid #3B82F6;
  line-height: 1.5;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* === SUCCESS/ERROR MESSAGES === */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.95rem;
  display: none;
}

.alert.success {
  background: #F0FFF4;
  color: #276749;
  border-left: 4px solid #48BB78;
}

.alert.error {
  background: #FFF5F5;
  color: #9B2C2C;
  border-left: 4px solid #FC8181;
}

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--blue-light);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-banner .btn-primary {
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* === FOOTER === */
footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* === SEITEN-HERO (kleinere Seiten) === */
.page-hero {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid,
  .burgen-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    width: 100%;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    font-size: 6rem;
    animation-duration: 3s;
  }

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

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 28px 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  section {
    padding: 60px 0;
  }

  .cta-banner {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .hero {
    padding: 60px 0;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 900;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  text-decoration: none;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1);
}
.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.08);
}
.buchen-page .whatsapp-float,
.burg-page .whatsapp-float {
  bottom: 80px;
}
