/* ===== BASE STYLES & CSS VARIABLES ===== */
:root {
  /* Color System */
  --background: hsl(220 25% 7%);
  --foreground: hsl(60 10% 95%);
  --primary: hsl(25 95% 55%);
  --primary-foreground: hsl(220 25% 7%);
  --secondary: hsl(220 20% 15%);
  --secondary-foreground: hsl(60 10% 95%);
  --accent: hsl(40 100% 50%);
  --accent-foreground: hsl(220 25% 7%);
  --muted: hsl(220 15% 20%);
  --muted-foreground: hsl(60 7% 95%);
  --border: hsl(220 15% 20%);
  --input: hsl(220 15% 20%);
  --ring: hsl(25 95% 55%);
  --radius: 0.5rem;

  /* Custom Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(220 25% 7%) 0%, hsl(220 30% 12%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(220 20% 12%) 0%, hsl(220 20% 8%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(25 95% 55%) 0%, hsl(40 100% 50%) 100%);

  /* Shadows */
  --shadow-glow: 0 0 60px hsl(25 95% 55% / 0.2);
  --shadow-card: 0 20px 40px hsl(220 25% 0% / 0.3);
  --shadow-lg: 0 10px 25px hsl(220 25% 0% / 0.25);

  /* Typography */
  --font-display: "Bebas Neue", "Helvetica", "Arial", sans-serif;
  --font-body: "Noto Sans", "Helvetica", "Arial", sans-serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 5rem;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Remove focus outlines globally */
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Orange color utility */
.text-orange-500 {
  color: hsl(25 95% 55%) !important; /* --primary color */
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 6.6rem); }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { 
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 3.75rem); /* 24px → 60px */
  line-height: 3.75rem; /* 60px height */
}
h4 { font-size: clamp(1rem, 2vw, 2.25rem); }
h5 { font-size: clamp(1rem, 2vw, 1.375rem); }

.text-primary {
  color: var(--primary);
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

.section {
  padding: 6rem 0; /* py-24 = 24 × 0.25rem */
}

@media (min-width: 768px) {
  .section {
    padding: 16rem 0; /* md:py-64 = 64 × 0.25rem */
  }
}

/* Special sections with shorter desktop padding */
.cta-section,
.problem-section,
.social-proof-section {
  padding: 6rem 0; /* py-24 = 24 × 0.25rem */
}

@media (min-width: 768px) {
  .cta-section,
  .problem-section,
  .social-proof-section {
    padding: 8rem 0; /* md:py-32 = 32 × 0.25rem */
  }
}

/* Hero section - no desktop padding */
.hero-section {
  padding: 6rem 0; /* py-24 = 24 × 0.25rem */
}

@media (min-width: 768px) {
  .hero-section {
    padding: 0; /* md:py-0 */
  }
}

/* Template section padding based on Gallery/Trainings section */
.secpad {
  padding: 6rem 0; /* Match py-24 spacing */
}

@media (min-width: 768px) {
  .secpad {
    padding: 16rem 0; /* Match md:py-64 spacing */
  }
}

/* Override about-section padding when secpad is present */
.secpad.about-section {
  padding: 6rem 0 !important;
}

@media (min-width: 768px) {
  .secpad.about-section {
    padding: 16rem 0 !important;
  }
}

/* Override why-lapalma-section padding when secpad is present */
.secpad.why-lapalma-section {
  padding: 6rem 0 !important;
}

@media (min-width: 768px) {
  .secpad.why-lapalma-section {
    padding: 16rem 0 !important;
  }
}

/* Override other-offers-section padding when secpad is present */
.secpad.other-offers-section {
  padding: 6rem 0 !important;
}

@media (min-width: 768px) {
  .secpad.other-offers-section {
    padding: 16rem 0 !important;
  }
}

/* Override contact-section padding when secpad is present */
.secpad.contact-section {
  padding: 6rem 0 !important;
}

@media (min-width: 768px) {
  .secpad.contact-section {
    padding: 16rem 0 !important;
  }
}

/* Override problem-section padding when secpad is present */
.secpad.problem-section {
  padding: 0 !important;
}

@media (min-width: 768px) {
  .secpad.problem-section {
    padding: 0 !important;
  }
}

/* Adjust top padding of contact section when it follows challenge section */
.challenge-section + .contact-section,
.challenge-section + .section.social-proof-section.contact-section {
  padding-top: 6rem !important;
}

@media (min-width: 768px) {
  .challenge-section + .contact-section,
  .challenge-section + .section.social-proof-section.contact-section {
    padding-top: 8rem !important;
  }
}


.section-header {
  margin-bottom: var(--spacing-3xl);
  text-align: center;
}

.section-title {
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3.75rem); /* 36px → 60px */
  line-height: 3.75rem; /* 60px height */
  margin-bottom: var(--spacing-md);
  color: var(--foreground);
}

.section-title-large {
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3.75rem); /* 36px → 60px */
  line-height: 3.75rem; /* 60px height */
  margin-bottom: var(--spacing-md);
  color: var(--foreground);
}

.section-divider {
  width: 5rem;
  height: 0.25rem;
  background-color: white;
  margin: 0 auto;
}

/* Standard section heading (h3 equivalent) */
.h3-section-title {
  font-size: clamp(2.25rem, 4vw, 4rem); /* 36px → 64px */
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: var(--spacing-md);
  color: var(--foreground);
  text-align: center;
}

/* Responsive variations matching original React */
@media (min-width: 768px) {
  .h3-section-title {
    font-size: clamp(3rem, 5vw, 4rem); /* 48px on medium screens */
  }
}

@media (min-width: 1024px) {
  .h3-section-title {
    font-size: 4rem; /* 64px on large screens */
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
  padding: 0.75rem 1.5rem; /* px-6 py-3 approx */
  border-radius: 9999px; /* rounded-full */
  font-size: 1.125rem; /* text-lg */
  font-weight: 600; /* font-semibold */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 80px hsl(25 95% 55% / 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  background-color: var(--foreground);
  color: var(--background);
}

.btn-lg {
  font-size: 1.125rem;
  padding: 1.5rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.btn-block {
  width: 100%;
}

@media (max-width: 768px) {
  .btn-mobile {
    width: auto;
    margin-top: var(--spacing-md);
  }
  
  .btn-lg {
    padding: 0.875rem 2rem;
  }

  .btn-primary, .btn-outline {
    padding: 0.625rem 1.5rem;
  }
}

/* ===== NAVIGATION ===== */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.nav-scrolled, .nav-mobile-open {
  background: hsl(220 25% 7% / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 12px hsl(220 25% 0% / 0.2);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .nav-container {
    height: 5rem;
  }
}

.logo {
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.8;
}

.logo-img {
  height: 36px;
  max-height: 36px;
  width: auto;
  max-width: 120px;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-img {
    height: 48px;
    max-height: 48px;
    max-width: 160px;
  }
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: var(--spacing-xl);
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: #f4f4f1;
  text-decoration: none;
  position: relative;
  padding: var(--spacing-sm) 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: hsl(60 10% 95% / 0.7);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.125rem;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
}

.mobile-menu.open {
  max-height: 24rem;
}

.mobile-menu-content {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-md);
  border-top: 1px solid var(--border);
  padding-top: var(--spacing-md);
}

.mobile-nav-link {
  width: 100%;
  text-align: right;
  color: #f4f4f1;
  font-weight: 500;
  padding: var(--spacing-sm) 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: hsl(60 10% 95% / 0.7);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(220 25% 7% / 0.65);
}

.hero-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background-color: hsl(25 95% 55% / 0.1);
  border-radius: 50%;
  filter: blur(120px);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6.6rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--primary);
  text-transform: uppercase;
  text-align: center;
}

.hero-subtitle {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: hsl(60 10% 95% / 0.9);
  line-height: 1.5;
  text-align: center;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  padding-top: var(--spacing-md);
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.scroll-down-btn {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
  color: var(--primary);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.fade-in {
  animation: fade-in 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: var(--secondary);
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
}

@media (min-width: 768px) {
  .about-section {
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
  }
}

.about-intro {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  line-height: 1.7;
  font-family: var(--font-body);
  margin-bottom: var(--spacing-3xl);
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}

/* Main Grid Layout */
.about-main-grid {
  display: grid;
  gap: var(--spacing-3xl);
  align-items: center;
  margin-bottom: var(--spacing-3xl);
}

@media (min-width: 768px) {
  .about-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
  }
}

/* Highlights Section */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.highlight-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  margin-top: 0.75rem;
  flex-shrink: 0;
}

.highlight-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  line-height: 1.7;
  font-family: var(--font-body);
  margin: 0;
}

/* Main Image */
.about-main-image {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .about-main-img {
    height: 500px;
  }
}

/* Gallery Section */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin: var(--spacing-3xl) 0;
}

@media (min-width: 768px) {
  .about-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Video Section */
.about-video-section {
  margin: var(--spacing-4xl) 0;
}

.video-description {
  color: var(--muted-foreground);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  font-family: var(--font-body);
  margin-bottom: var(--spacing-2xl);
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}

.video-container {
  max-width: 1024px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/9;
  cursor: pointer;
}

.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.video-playing .about-video {
  opacity: 1;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.video-playing .video-poster {
  opacity: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(220 25% 7% / 0.4);
  transition: opacity 0.3s ease;
}

.video-playing .video-overlay {
  opacity: 0;
}

.video-loading {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: hsl(220 25% 7% / 0.6);
  z-index: 10;
}

.video-loading.show {
  display: flex;
}

.spinner {
  width: 4rem;
  height: 4rem;
  border: 4px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.video-play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

.video-play-button svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary-foreground);
}

@media (min-width: 768px) {
  .video-play-button svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.video-play-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s ease;
}

.video-play-circle:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .video-play-circle {
    width: 7rem;
    height: 7rem;
  }
}

/* Custom Program Section */
.custom-program-section {
  margin-top: var(--spacing-4xl);
}

.custom-program-grid {
  display: grid;
  gap: var(--spacing-3xl);
  align-items: center;
}

@media (min-width: 768px) {
  .custom-program-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
  }
}

.program-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-lg);
}

.program-title {
  font-size: clamp(1rem, 2vw, 2.25rem);
  color: var(--foreground);
  margin-bottom: var(--spacing-md);
}

.program-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.program-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  line-height: 1.7;
  font-family: var(--font-body);
  margin: 0;
  max-width: 672px;
}

.program-image {
  position: relative;
}

.program-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .program-img {
    height: 500px;
  }
}

/* ===== OUR TRAININGS SECTION ===== */
.trainings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trainings-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
  }
}

.training-item {
  position: relative;
}

.training-image-container {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

.training-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.training-item:hover .training-img {
  transform: scale(1.1);
}

.training-caption {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
  margin-top: var(--spacing-md);
  margin-bottom: 0;
}

/* ===== TRAINERS SECTION ===== */
.trainers-section {
  background-color: var(--secondary);
}

.trainers-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4xl);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trainer-profile:nth-of-type(3),
  .trainer-profile:nth-of-type(4) {
    margin-top: var(--spacing-4xl);
  }
}

.trainer-profile {
  display: grid;
  gap: var(--spacing-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .trainer-profile {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
  }
}

.trainer-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.trainer-image-wrapper {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.trainer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.trainer-img:hover {
  transform: scale(1.05);
}

.trainer-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.trainer-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.badge-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trainer-name {
  font-size: clamp(1rem, 2vw, 2.25rem);
  color: var(--foreground);
  margin-bottom: var(--spacing-sm);
}

.trainer-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.trainer-achievements {
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  line-height: 1.6;
}

.bullet {
  color: var(--accent);
  margin-top: 0.25rem;
}

.trainer-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.trainer-quote {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.trainer-social {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: var(--font-body);
}

.social-link:hover {
  color: var(--primary);
}

.collaboration-section {
  text-align: center;
  padding: var(--spacing-2xl) 0;
}

.collaboration-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}

.collaboration-line {
  display: block;
}

.vkr-logo-container {
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .vkr-logo-container {
    max-width: 200px; /* Half the size on mobile */
  }
}

.vkr-logo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* ===== TRANSFORM SECTION ===== */
.transform-content {
  max-width: 1200px;
  margin: 0 auto;
}

.transform-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmin(200px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--gradient-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.before-after-grid {
  display: grid;
  gap: var(--spacing-xl);
}

.transformation-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

@media (max-width: 768px) {
  .transformation-item {
    grid-template-columns: 1fr;
  }
}

.transformation-before, .transformation-after {
  position: relative;
  text-align: center;
}

.transformation-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.transformation-label {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  background: var(--background);
  color: var(--foreground);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== WHY LA PALMA SECTION ===== */
.why-lapalma-section {
  background-color: #1f242e;
  padding: var(--spacing-3xl) 0;
}

@media (min-width: 768px) {
  .why-lapalma-section {
    padding: var(--spacing-4xl) 0;
  }
}

.why-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Island Paradise Section */
.island-paradise {
  margin-bottom: var(--spacing-4xl);
}

.paradise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

@media (min-width: 768px) {
  .paradise-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
  }
}

.paradise-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-lg);
}

.paradise-title {
  font-size: clamp(1rem, 2vw, 2.25rem);
  color: var(--foreground);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.paradise-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  line-height: 1.7;
  margin: 0;
}

.paradise-image {
  position: relative;
}

.paradise-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .paradise-img {
    max-width: 500px;
  }
}

/* March-Jog Section */
.march-jog-section {
  margin-top: var(--spacing-4xl);
}

.march-jog-text {
  margin-bottom: var(--spacing-3xl);
}

.march-jog-title {
  font-size: clamp(1rem, 2vw, 2.25rem);
  color: var(--foreground);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.march-jog-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.march-jog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .march-jog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
  }
}

.march-jog-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.march-jog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.march-jog-img:hover {
  transform: scale(1.05);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.benefit-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--gradient-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  margin-bottom: var(--spacing-lg);
  color: var(--primary);
}

.benefit-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: var(--spacing-md);
  color: var(--foreground);
}

.benefit-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  line-height: 1.6;
}

.lapalma-image {
  text-align: center;
}

.lapalma-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background-color: #0d1016;
}

.faq-container {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--spacing-xl);
  background: hsl(220 20% 10% / 0.5);
}

.faq-question {
  font-size: clamp(1rem, 2vw, 1.375rem);
  text-align: left;
  margin-bottom: var(--spacing-md);
  color: var(--foreground);
  font-weight: 400;
  font-family: var(--font-body);
}

.faq-answer {
  color: var(--muted-foreground);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  font-family: var(--font-body);
}

/* ===== ACCOMMODATION SECTION ===== */
.accommodation-section {
  background-color: #1a1f2e !important;
}


.accommodation-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 640px) {
  .accommodation-container {
    padding: 0 var(--spacing-lg);
  }
}

.accommodation-header {
  margin-bottom: var(--spacing-3xl);
}

.accommodation-title {
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3.75rem); /* 36px → 60px */
  line-height: 3.75rem; /* 60px height */
  margin-bottom: var(--spacing-md);
}

@media (max-width: 400px) {
  .accommodation-title {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }
}

.accommodation-divider {
  width: 5rem;
  height: 0.25rem;
  background-color: white;
  margin: 0 auto var(--spacing-2xl);
}

.accommodation-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  max-width: 768px;
  margin: 0 auto var(--spacing-3xl);
  line-height: 1.6;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

@media (min-width: 1024px) {
  .accommodation-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
  }
}

.accommodation-square {
  aspect-ratio: 1;
  border-radius: 0.75rem; /* rounded-xl from Tailwind */
  overflow: hidden;
}

.accommodation-square-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.accommodation-square-img:hover {
  transform: scale(1.05);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding-bottom: 6rem !important; /* Reduced bottom padding */
}

@media (min-width: 768px) {
  .testimonials-section {
    padding-bottom: 8rem !important; /* Reduced bottom padding on desktop */
  }
}

.testimonials-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 640px) {
  .testimonials-container {
    padding: 0 var(--spacing-lg);
  }
}

.testimonials-header {
  margin-bottom: var(--spacing-3xl);
}

.testimonials-title {
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3.75rem); /* 36px → 60px */
  line-height: 3.75rem; /* 60px height */
  margin-bottom: var(--spacing-md);
}

@media (max-width: 400px) {
  .testimonials-title {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }
}

.testimonials-divider {
  width: 5rem;
  height: 0.25rem;
  background-color: white;
  margin: 0 auto var(--spacing-2xl);
}

.testimonials-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
}

.testimonial-reel {
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: hsl(0 0% 0% / 0.2);
}

.reel-container {
  width: 100%;
  height: 100%;
}

.reel-iframe {
  width: 100%;
  height: 100%;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CHALLENGE SECTION ===== */
.challenge-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.challenge-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.challenge-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.challenge-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(220 25% 7% / 0.6);
}

.challenge-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--spacing-lg);
  z-index: 10;
}

.challenge-title {
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 3.75rem);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--foreground);
}

.challenge-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--foreground);
  max-width: 42rem;
  margin-bottom: var(--spacing-xl);
  font-family: var(--font-body);
  line-height: 1.6;
}

.challenge-btn {
  background: var(--gradient-accent);
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.5rem 2rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .challenge-btn {
    padding: 0.875rem 2rem;
  }
}

.challenge-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 80px hsl(25 95% 55% / 0.3);
}

@media (max-width: 768px) {
  .challenge-container {
    aspect-ratio: 4/5;
    min-height: 450px;
  }
  
  .challenge-content {
    padding: 0 var(--spacing-md);
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--spacing-3xl) 0;
  background-color: var(--background);
}

@media (min-width: 768px) {
  .contact-section {
    padding: var(--spacing-4xl) 0;
  }
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-2xl);
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-content {
    flex-direction: row;
    gap: var(--spacing-3xl);
  }
}

.contact-avatar {
  flex-shrink: 0;
}

.avatar-container {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--background);
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .avatar-container {
    width: 12rem;
    height: 12rem;
  }
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.contact-info {
  text-align: center;
}

@media (min-width: 768px) {
  .contact-info {
    text-align: left;
  }
}

.contact-message {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.contact-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--spacing-md);
}

.contact-whatsapp {
  display: inline-block;
  border: 1px solid var(--foreground);
  border-radius: 9999px;
  padding: var(--spacing-md) var(--spacing-xl);
  color: var(--foreground);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem); /* Match body text size */
}

.contact-whatsapp:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== OFFERS SECTION ===== */
.offers-content {
  max-width: 1200px;
  margin: 0 auto;
}

.offer-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: var(--spacing-3xl);
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

.offer-card {
  text-align: left;
  padding: var(--spacing-3xl);
  background: var(--gradient-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offer-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  line-height: 1.6;
}

.offer-card-elite {
  border: 2px solid var(--primary);
  position: relative;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-card-title {
  font-size: 1.5rem; /* 24px */
  color: var(--foreground);
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (min-width: 768px) {
  .offer-card-title {
    font-size: clamp(1rem, 2vw, 2.25rem);
  }
}

.elite-title {
  color: var(--primary);
}

.offer-features {
  list-style: none;
  margin-bottom: var(--spacing-xl);
  flex-grow: 1;
}

.offer-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.feature-bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.elite-bullet {
  background-color: var(--primary);
}

.offer-feature span:last-child {
  font-size: clamp(1rem, 2.25vw, 1.25rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  line-height: 1.6;
}

.offer-pricing {
  margin-bottom: var(--spacing-xl);
}

.pricing-label {
  font-size: clamp(1.25rem, 2.25vw, 1.5rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  text-align: center;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-item {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.pricing-item span {
  font-size: clamp(1.25rem, 2.25vw, 1.5rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
}

.pricing-item span:nth-child(3) {
  font-weight: 600;
  color: var(--foreground);
}

.pricing-note {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  text-align: center;
  line-height: 1.6;
  margin: var(--spacing-md) 0 0 0;
}

.offer-button-container {
  text-align: center;
  margin-top: auto;
}

.offer-icon {
  margin-bottom: var(--spacing-xl);
  color: var(--primary);
}

.offer-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: var(--spacing-md);
  color: var(--foreground);
}

@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    padding: 0 var(--spacing-md);
  }
  
  .offer-card {
    padding: var(--spacing-xl) 15px;
  }
  
  /* Increase padding for dots and features to provide more breathing room */
  .offer-features {
    padding: 0 !important;
    margin-left: 0 !important;
  }
  
  .offer-card-title,
  .offer-pricing,
  .offer-button-container {
    padding: 0 !important;
  }
}

/* ===== OTHER OFFERS SECTION ===== */
.other-offers-section {
  padding: var(--spacing-3xl) 0;
  background-color: #1a1f2e;
}

@media (min-width: 768px) {
  .other-offers-section {
    padding: var(--spacing-4xl) 0;
  }
}

.other-offers-link {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  max-width: 896px;
  margin: 0 auto;
  cursor: pointer;
}

.other-offers-link + .other-offers-link {
  margin-top: var(--spacing-3xl);
}

.other-offers-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.other-offers-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.other-offers-link:hover .other-offers-img {
  transform: scale(1.05);
}

.other-offers-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(220 25% 7% / 0.6);
}

.other-offers-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--spacing-lg);
  z-index: 10;
}

.other-offers-title {
  font-size: 1.5rem; /* 24px */
  color: var(--foreground);
  margin: 0;
}

@media (min-width: 768px) {
  .other-offers-title {
    font-size: clamp(1rem, 2vw, 2.25rem);
  }
}

.other-offers-title + .other-offers-title {
  margin-top: var(--spacing-sm);
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--spacing-4xl) 0;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: center;
    gap: var(--spacing-4xl);
  }
}

.footer-column {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-column {
    text-align: left;
  }
}

.footer-heading {
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem; /* 18px */
  letter-spacing: 0.1em;
}

.footer-text {
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-xs);
  font-size: 1.125rem; /* 18px */
  font-family: var(--font-body);
}

.footer-contact {
  display: inline-block;
  border: 1px solid hsl(220 15% 20% / 0.5);
  border-radius: 9999px;
  padding: var(--spacing-md) var(--spacing-xl);
  color: var(--foreground);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem; /* 18px */
  font-family: var(--font-body);
}

.footer-note {
  color: var(--muted-foreground);
  font-size: 1.125rem; /* 18px */
  font-family: var(--font-body);
}

.social-link, .legal-link {
  color: var(--muted-foreground);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: color 0.3s ease;
  font-size: 1.125rem; /* 18px */
  font-family: var(--font-body);
}

.footer-bottom {
  padding-top: var(--spacing-2xl);
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.125rem; /* 18px */
  font-family: var(--font-body);
}

.footer-link {
  color: var(--foreground);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--foreground);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: var(--spacing-lg);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cookie-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-family: var(--font-body);
  line-height: 1.5;
}

.cookie-link {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-sm);
}

.cookie-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--muted-foreground);
  text-align: center;
  padding: var(--spacing-lg);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.cookie-placeholder p {
  max-width: 250px;
}

.btn-cookie-inline {
  background: none;
  border: none;
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
}

.btn-cookie-inline:hover {
  color: hsl(25 95% 45%);
}

.reel-iframe {
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  animation: scroll 30s linear infinite;
}

.animate-scroll:hover {
  animation-play-state: paused;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px hsl(25 95% 55% / 0.3);
  }
  50% {
    box-shadow: 0 0 40px hsl(25 95% 55% / 0.5);
  }
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}