/*
Theme Name: Dance-Power
Theme URI: https://dance-power.de
Author: Dance-Power Mobildikothe
Author URI: https://dance-power.de
Description: Professionelles WordPress-Theme für die Mobildikothe Dance-Power. Vollständig responsiv mit modernem Design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dance-power
Tags: music, dj, entertainment, responsive, custom-menu, custom-logo
*/

/* ===================================
   CSS VARIABLEN & RESET
   =================================== */
:root {
  --dp-primary: #FF2D55;
  --dp-secondary: #1A1A2E;
  --dp-accent: #F5A623;
  --dp-dark: #0D0D1A;
  --dp-mid: #16213E;
  --dp-light: #E8E8F0;
  --dp-white: #FFFFFF;
  --dp-text: #C8C8D8;
  --dp-text-light: #8888AA;
  --dp-gradient: linear-gradient(135deg, #FF2D55 0%, #FF6B35 50%, #F5A623 100%);
  --dp-gradient-dark: linear-gradient(180deg, #0D0D1A 0%, #1A1A2E 100%);
  --dp-font-display: 'Bebas Neue', 'Impact', sans-serif;
  --dp-font-heading: 'Rajdhani', 'Oswald', sans-serif;
  --dp-font-body: 'Exo 2', 'Segoe UI', sans-serif;
  --dp-radius: 4px;
  --dp-radius-lg: 12px;
  --dp-shadow: 0 4px 24px rgba(255, 45, 85, 0.15);
  --dp-shadow-lg: 0 8px 48px rgba(255, 45, 85, 0.25);
  --dp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--dp-font-body);
  background: var(--dp-dark);
  color: var(--dp-text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--dp-primary); transition: var(--dp-transition); }
a:hover { color: var(--dp-accent); }
ul { list-style: none; }

/* ===================================
   TYPOGRAFIE
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--dp-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dp-white);
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-family: var(--dp-font-display); letter-spacing: 3px; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--dp-text); }
p:last-child { margin-bottom: 0; }

/* ===================================
   LAYOUT UTILITIES
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .eyebrow {
  font-family: var(--dp-font-display);
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--dp-primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--dp-text-light);
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--dp-gradient);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--dp-radius);
  font-family: var(--dp-font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--dp-transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--dp-gradient);
  color: var(--dp-white);
  box-shadow: var(--dp-shadow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--dp-shadow-lg);
  color: var(--dp-white);
}

.btn-outline {
  border-color: var(--dp-primary);
  color: var(--dp-primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--dp-primary);
  color: var(--dp-white);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--dp-white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--dp-primary);
  color: var(--dp-primary);
}

/* ===================================
   CARDS
   =================================== */
.card {
  background: var(--dp-mid);
  border: 1px solid rgba(255, 45, 85, 0.1);
  border-radius: var(--dp-radius-lg);
  padding: 2rem;
  transition: var(--dp-transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--dp-gradient);
  transform: scaleX(0);
  transition: var(--dp-transition);
}

.card:hover {
  border-color: rgba(255, 45, 85, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--dp-shadow-lg);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 45, 85, 0.1);
  border-radius: var(--dp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 45, 85, 0.15);
  transition: var(--dp-transition);
}

#site-header.scrolled {
  background: rgba(13, 13, 26, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--dp-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--dp-font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--dp-white);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dp-primary);
  font-family: var(--dp-font-heading);
}

/* Navigation */
#primary-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  color: var(--dp-text);
  font-family: var(--dp-font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--dp-radius);
  transition: var(--dp-transition);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
  color: var(--dp-primary);
  background: rgba(255, 45, 85, 0.08);
}

.nav-menu > li > a .chevron {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.nav-menu > li:hover > a .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--dp-mid);
  border: 1px solid rgba(255, 45, 85, 0.2);
  border-radius: var(--dp-radius-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--dp-transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 100;
}

.sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--dp-mid);
  border-left: 1px solid rgba(255, 45, 85, 0.2);
  border-top: 1px solid rgba(255, 45, 85, 0.2);
  transform: translateX(-50%) rotate(45deg);
}

.nav-menu > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--dp-text);
  font-family: var(--dp-font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: var(--dp-radius);
  transition: var(--dp-transition);
}

.sub-menu li a:hover {
  color: var(--dp-primary);
  background: rgba(255, 45, 85, 0.08);
  padding-left: 1.25rem;
}

/* Social Icons in Header */
.header-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--dp-text-light);
  font-size: 0.9rem;
  transition: var(--dp-transition);
  text-decoration: none;
}

.social-icon:hover { transform: translateY(-2px); }
.social-icon.facebook:hover { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,0.1); }
.social-icon.instagram:hover { border-color: #E4405F; color: #E4405F; background: rgba(228,64,95,0.1); }
.social-icon.youtube:hover { border-color: #FF0000; color: #FF0000; background: rgba(255,0,0,0.1); }
.social-icon.google:hover { border-color: #4285F4; color: #4285F4; background: rgba(66,133,244,0.1); }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

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

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dp-gradient-dark);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(255, 45, 85, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 40%, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
}

/* Animated music notes / sound waves in background */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(255, 45, 85, 0.03) 40px,
    rgba(255, 45, 85, 0.03) 41px
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--dp-font-heading);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dp-primary);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--dp-primary);
}

.hero h1 {
  color: var(--dp-white);
  margin-bottom: 1.5rem;
  line-height: 0.95;
}

.hero h1 .highlight {
  background: var(--dp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--dp-text-light);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  z-index: 0;
  overflow: hidden;
}

.soundwave-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soundwave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 200px;
  opacity: 0.3;
}

.soundwave-bar {
  width: 4px;
  background: var(--dp-gradient);
  border-radius: 2px;
  animation: soundwave 1.2s ease-in-out infinite alternate;
}

.soundwave-bar:nth-child(1) { height: 20%; animation-delay: 0s; }
.soundwave-bar:nth-child(2) { height: 50%; animation-delay: 0.1s; }
.soundwave-bar:nth-child(3) { height: 80%; animation-delay: 0.2s; }
.soundwave-bar:nth-child(4) { height: 100%; animation-delay: 0.3s; }
.soundwave-bar:nth-child(5) { height: 70%; animation-delay: 0.4s; }
.soundwave-bar:nth-child(6) { height: 90%; animation-delay: 0.5s; }
.soundwave-bar:nth-child(7) { height: 60%; animation-delay: 0.6s; }
.soundwave-bar:nth-child(8) { height: 40%; animation-delay: 0.7s; }
.soundwave-bar:nth-child(9) { height: 75%; animation-delay: 0.8s; }
.soundwave-bar:nth-child(10) { height: 55%; animation-delay: 0.9s; }
.soundwave-bar:nth-child(11) { height: 85%; animation-delay: 1.0s; }
.soundwave-bar:nth-child(12) { height: 35%; animation-delay: 1.1s; }

@keyframes soundwave {
  from { transform: scaleY(0.3); }
  to { transform: scaleY(1); }
}

/* ===================================
   LEISTUNGEN OVERVIEW (Homepage)
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card .card-icon { font-size: 2rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--dp-text-light); margin: 0; }

/* ===================================
   FAQ
   =================================== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(255, 45, 85, 0.1);
  border-radius: var(--dp-radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--dp-mid);
  transition: var(--dp-transition);
}

.faq-item:hover { border-color: rgba(255, 45, 85, 0.25); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--dp-font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dp-white);
  gap: 1rem;
  user-select: none;
}

.faq-icon {
  width: 28px; height: 28px;
  background: rgba(255, 45, 85, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dp-primary);
  font-size: 1rem;
  transition: var(--dp-transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--dp-primary); color: white; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--dp-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================================
   REFERENZEN
   =================================== */
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.reference-card {
  background: var(--dp-mid);
  border: 1px solid rgba(255, 45, 85, 0.1);
  border-radius: var(--dp-radius-lg);
  padding: 2rem;
  transition: var(--dp-transition);
}

.reference-card:hover {
  border-color: rgba(255, 45, 85, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--dp-shadow-lg);
}

.stars { color: var(--dp-accent); margin-bottom: 1rem; letter-spacing: 2px; }

.reference-text {
  font-style: italic;
  color: var(--dp-text);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.reference-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px; height: 44px;
  background: var(--dp-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dp-font-heading);
  font-weight: 700;
  color: white;
  font-size: 1rem;
}

.author-info span { display: block; }
.author-name { font-family: var(--dp-font-heading); color: var(--dp-white); font-weight: 600; font-size: 0.9rem; }
.author-event { color: var(--dp-text-light); font-size: 0.8rem; }

/* ===================================
   KONTAKT
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(255, 45, 85, 0.1);
  border-radius: var(--dp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dp-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label {
  font-family: var(--dp-font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dp-text-light);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--dp-white);
  font-size: 1rem;
  font-weight: 500;
}

/* Form */
.contact-form {
  background: var(--dp-mid);
  border: 1px solid rgba(255, 45, 85, 0.1);
  border-radius: var(--dp-radius-lg);
  padding: 2.5rem;
}

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

.form-label {
  display: block;
  font-family: var(--dp-font-heading);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dp-text-light);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 45, 85, 0.15);
  border-radius: var(--dp-radius);
  color: var(--dp-white);
  font-family: var(--dp-font-body);
  font-size: 0.95rem;
  transition: var(--dp-transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--dp-primary);
  background: rgba(255, 45, 85, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.1);
}

.form-control::placeholder { color: var(--dp-text-light); }

select.form-control option { background: var(--dp-mid); }

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

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

/* ===================================
   BUCHUNGSANFRAGE
   =================================== */
.booking-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--dp-mid);
  border: 1px solid rgba(255, 45, 85, 0.15);
  border-radius: var(--dp-radius-lg);
  padding: 3rem;
}

/* ===================================
   PAGE HERO (Innenseiten)
   =================================== */
.page-hero {
  padding: 140px 0 60px;
  background: var(--dp-gradient-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 45, 85, 0.1) 0%, transparent 70%);
}

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

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--dp-text-light);
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a { color: var(--dp-text-light); }
.page-hero .breadcrumb a:hover { color: var(--dp-primary); }
.page-hero .breadcrumb span { color: var(--dp-primary); }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--dp-text-light);
  font-size: 1.1rem;
}

/* ===================================
   CONTENT PAGES
   =================================== */
.page-content {
  padding: 5rem 0;
}

.page-content p { color: var(--dp-text); margin-bottom: 1.25rem; }
.page-content h2 { color: var(--dp-white); margin: 2rem 0 1rem; font-size: 1.6rem; }
.page-content h3 { color: var(--dp-white); margin: 1.5rem 0 0.75rem; font-size: 1.2rem; }

.content-box {
  background: var(--dp-mid);
  border: 1px solid rgba(255, 45, 85, 0.1);
  border-radius: var(--dp-radius-lg);
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ===================================
   STATS BAR
   =================================== */
.stats-bar {
  background: var(--dp-mid);
  border-top: 1px solid rgba(255, 45, 85, 0.1);
  border-bottom: 1px solid rgba(255, 45, 85, 0.1);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--dp-font-display);
  font-size: 3.5rem;
  letter-spacing: 2px;
  background: var(--dp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: var(--dp-font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dp-text-light);
  margin-top: 0.5rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 45, 85, 0.08) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 { margin-bottom: 1rem; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-section p { color: var(--dp-text-light); max-width: 550px; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===================================
   FOOTER
   =================================== */
#site-footer {
  background: #080810;
  border-top: 1px solid rgba(255, 45, 85, 0.1);
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo-name { font-size: 1.8rem; }
.footer-brand p {
  color: var(--dp-text-light);
  font-size: 0.9rem;
  margin: 1.25rem 0;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social .social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--dp-text-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--dp-transition);
  text-decoration: none;
}

.footer-social .social-icon.facebook:hover { background: #1877F2; border-color: #1877F2; color: white; }
.footer-social .social-icon.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #E4405F; color: white; }
.footer-social .social-icon.youtube:hover { background: #FF0000; border-color: #FF0000; color: white; }
.footer-social .social-icon.google:hover { background: #4285F4; border-color: #4285F4; color: white; }

.footer-col h4 {
  font-family: var(--dp-font-heading);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dp-primary);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  color: var(--dp-text-light);
  font-size: 0.9rem;
  transition: var(--dp-transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--dp-primary);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--dp-transition);
}

.footer-links a:hover {
  color: var(--dp-white);
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--dp-text-light);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--dp-text-light);
  font-size: 0.8rem;
  transition: var(--dp-transition);
}

.footer-bottom-links a:hover { color: var(--dp-primary); }

/* ===================================
   WOOCOMMERCE / WP BLOCKS COMPAT
   =================================== */
.wp-block-button__link { composes: btn btn-primary; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

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

  /* Mobile Nav */
  #primary-navigation {
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,26,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  #primary-navigation.open { transform: translateX(0); }

  .nav-menu { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { padding: 0.85rem 0; font-size: 1.1rem; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); border-radius: 0; }

  .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0;
  }

  .sub-menu::before { display: none; }
  .nav-menu > li.open .sub-menu { max-height: 300px; }
  .sub-menu li a { padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); border-radius: 0; font-size: 0.95rem; }

  .menu-toggle { display: flex; }
  .header-social { display: none; }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-visual { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .booking-form { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
