/* ========================================
   CSS STYLE ROOT
   ======================================== */

/* 
   GOOGLE FONTS:
   - Montserrat: Headings (bold, modern, professional, musical)
   - Inter: Body text (clean, highly readable, contemporary)
*/

:root {
  /* Typography System */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  /* Font Sizes */
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */
  --font-size-5xl: 3rem; /* 48px */
  --font-size-6xl: 3.75rem; /* 60px */

  /* Line Heights */
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;
  --line-height-loose: 2;

  /* Letter Spacing */
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;

  /* Color System - Light-Dark Theme */
  --color-page-bg: #e5e7eb;
  --color-bg-dark: #1a1d29;
  --color-bg-light: #ffffff;
  --color-surface: #f8f9fa;
  --color-surface-alt: #f4f5f7;

  /* Primary Colors */
  --color-primary: #ff6b35;
  --color-primary-dark: #e85a28;
  --color-primary-light: #ff8555;
  --color-secondary: #f7931e;

  /* Text Colors */
  --color-text-main: #2c3e50;
  --color-text-muted: #4a5a6b;
  --color-text-light: #8897a8;
  --color-text-on-dark: #ffffff;
  --color-text-on-light: #2c3e50;

  /* Borders & Radius System */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

  /* Legacy compatibility */
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 16px;

  --border-color: #e1e8ed;
  --border-color-dark: rgba(255, 255, 255, 0.15);

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 24px rgba(255, 107, 53, 0.2);

  /* Spacing System */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem; /* 8px */
  --spacing-md: 1rem; /* 16px */
  --spacing-lg: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 3rem; /* 48px */

  /* Container & Layout */
  --container-padding: 1rem; /* Mobile */
  --container-max-width: 1320px; /* Desktop */
  --page-margin: 0.2rem; /* Page side margins */
}

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

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  background: var(--color-page-bg);
  color: var(--color-text-main);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-normal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 var(--page-margin);
}

html {
  scroll-behavior: smooth;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
}

h2 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
}

h3 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
}

h4 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
}

h5 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

h6 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
}

p {
  font-family: var(--font-body);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  color: var(--color-primary);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 1rem;
}

.lead {
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
}

strong,
b {
  font-weight: var(--font-weight-semibold);
}

small {
  font-size: var(--font-size-sm);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  background: var(--color-bg-dark);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  padding: var(--spacing-md) 0;
  margin: var(--spacing-xs) 0 var(--spacing-xs) 0;
  border-radius: var(--radius-lg);
  position: sticky;
  top: var(--spacing-xs);
  z-index: 1000;
}

.navbar:hover {
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--color-primary);
}

.navbar .container {
  padding: 0 var(--spacing-lg);
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text-on-dark) !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand:hover {
  color: var(--color-primary) !important;
}

.navbar-brand i {
  color: var(--color-primary);
  font-size: 1.8rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem !important;
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--color-primary) !important;
}

.nav-link.active {
  color: var(--color-primary) !important;
}

/* ========================================
   SECTIONS SPACING
   ======================================== */
section {
  margin-bottom: var(--spacing-xs);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

section:last-of-type {
  margin-bottom: var(--spacing-xs);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2c3e50 100%);
  overflow: hidden;
  color: var(--color-text-on-dark);
  padding: 3rem 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

/* Hero Content Wrapper */
.hero-content-wrapper {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content-wrapper:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.12), 0 0 12px rgba(255, 107, 53, 0.08);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-text-on-dark);
  animation: fadeInUp 0.8s ease;
  line-height: 1.2;
  transition: all 0.3s ease;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-content-wrapper:hover .hero-title {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 107, 53, 0.25);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s ease 0.2s backwards;
  max-width: 500px;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.hero-content-wrapper:hover .hero-subtitle {
  color: rgba(255, 255, 255, 1);
}

.hero-buttons {
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-section .btn-primary {
  background: var(--color-primary);
  border: none;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 0.875rem 2rem;
}

.hero-section .btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.22);
}

.hero-section .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--color-text-on-dark);
  background: transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 0.875rem 2rem;
}

.hero-section .btn-outline-light:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

/* ========================================
   HERO VIDEO GRID
   ======================================== */
.hero-video-grid {
  border-radius: var(--radius-lg);
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 107, 53, 0.15);
  box-shadow: var(--shadow-md);
}

.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(20px);
  animation: gentleSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transition: all 0.3s ease;
}

/* Staggered animation delays */
.video-card:nth-child(1) {
  animation-delay: 0.1s;
}
.video-card:nth-child(2) {
  animation-delay: 0.15s;
}
.video-card:nth-child(3) {
  animation-delay: 0.2s;
}
.video-card:nth-child(4) {
  animation-delay: 0.25s;
}
.video-card:nth-child(5) {
  animation-delay: 0.3s;
}
.video-card:nth-child(6) {
  animation-delay: 0.35s;
}

@keyframes gentleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2), 0 0 16px rgba(255, 107, 53, 0.12);
}

.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: var(--radius-md);
}

.video-card:hover::after {
  opacity: 1;
}

.video-card video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: var(--radius-md);
}

.video-card:hover video {
  transform: scale(1.05);
}

.video-card .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.6) 100%);
  color: white;
  font-size: 2.5rem;
  transition: all 0.3s ease;
  border-radius: var(--radius-md);
}

.video-card:hover .play-overlay {
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.75) 100%);
}

.video-card .play-overlay i {
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.video-card:hover .play-overlay i {
  transform: scale(1.2);
  color: var(--color-primary);
  filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.7));
}

/* Video info text */
.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7));
  z-index: 2;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.video-card:hover .video-info {
  opacity: 1;
  transform: translateY(0);
}

.video-artist {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.125rem;
}

.video-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  line-height: 1.3;
}

/* Mobile hero tweaks */
@media (max-width: 767px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-content-wrapper {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .video-card video {
    height: 160px;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-subtitle,
  .hero-buttons {
    animation: none;
  }

  .video-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .video-card:hover {
    transform: none;
  }

  .hero-content-wrapper:hover {
    transform: none;
  }

  .hero-content-wrapper:hover .hero-title {
    transform: none;
  }
}

/* ========================================
   CARD SYSTEM
   ======================================== */

/* Base style for all main cards */
.highlight-card,
.lesson-card,
.recording-card,
.card.dds-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.highlight-card:hover,
.lesson-card:hover,
.recording-card:hover,
.card.dds-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25), 0 6px 20px rgba(255, 107, 53, 0.15);
  background: rgba(255, 255, 255, 0.1);
}

/* Shared circular icon style for all cards */
.highlight-icon,
.lesson-icon,
.recording-icon,
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-primary), #ff8c61);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover .highlight-icon,
.lesson-card:hover .lesson-icon,
.recording-card:hover .recording-icon,
.card.dds-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.5);
}

.highlight-icon i,
.lesson-icon i,
.recording-icon i,
.card-icon i {
  font-size: 2.2rem;
  color: #ffffff;
}

/* Shared titles and paragraphs for cards */
.highlight-card h3,
.highlight-card h4,
.lesson-card .card-title,
.recording-card h3,
.card.dds-card h3,
.card.dds-card h4 {
  color: #ffffff;
  font-weight: 700;
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-sm);
}

.highlight-card p,
.recording-card p,
.card.dds-card p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  margin: 0;
  font-size: var(--font-size-base);
  max-width: 400px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2c3e50 100%);
  position: relative;
  color: var(--color-text-on-dark);
}

.about-section .section-title {
  color: var(--color-primary);
}

.about-section .lead,
.about-section p {
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   LESSONS SECTION
   ======================================== */
.lessons-section {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2c3e50 100%);
  color: var(--color-text-on-dark);
}

.lessons-section .section-title {
  color: var(--color-primary);
}

.lessons-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.lesson-card .card-body {
  padding: 0;
  text-align: center;
  background: transparent;
  width: 100%;
}

.lesson-card .card-title {
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.lesson-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-size-base);
  line-height: 1.75;
  margin: 0;
}

.lesson-card .list-group {
  background: transparent;
}

.lesson-card .list-group-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.875rem 0;
  font-size: var(--font-size-sm);
  text-align: left;
}

.lesson-card .list-group-item:last-child {
  border-bottom: none;
}

.lesson-card .btn-outline-primary {
  border: 2px solid var(--color-primary);
  color: #ffffff;
  background: rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  font-weight: 600;
  padding: var(--spacing-sm) var(--spacing-lg);
}

.lesson-card .btn-outline-primary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

/* ========================================
   CAROUSEL SECTION
   ======================================== */
.carousel-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  position: relative;
  color: var(--color-text-on-dark);
}

.carousel-section .section-title {
  color: var(--color-primary);
}

.carousel-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.custom-carousel {
  max-width: 900px;
  margin: 0 auto;
}

.carousel-content {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.carousel-icon {
  font-size: 4rem;
  color: var(--color-primary);
}

.carousel-content h3 {
  color: var(--color-text-on-dark);
  font-weight: 700;
}

.carousel-content p {
  color: rgba(255, 255, 255, 0.9);
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: 2px solid var(--color-primary);
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(345deg);
}

/* ========================================
   RECORDING SECTION
   ======================================== */
.recording-section {
  background: linear-gradient(135deg, #1a1d29 0%, #34495e 100%);
  color: var(--color-text-on-dark);
}

.recording-section .section-title {
  color: var(--color-primary);
}

.recording-section .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.recording-cta {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-lg);
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.22);
  transition: all 0.3s ease;
}

.recording-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.recording-section .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

@media (max-width: 768px) {
  .recording-card {
    padding: var(--spacing-md);
  }

  .recording-icon {
    width: 56px;
    height: 56px;
  }

  .recording-icon i {
    font-size: 1.75rem;
  }

  .recording-cta {
    width: 100%;
    padding: var(--spacing-md);
  }
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2c3e50 100%);
  color: var(--color-text-on-dark);
}

.gallery-section .section-title {
  color: var(--color-primary);
}

.gallery-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.gallery-item {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  background: #1a1d29;
  border: 2px solid rgba(255, 107, 53, 0.2);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25), 0 6px 20px rgba(255, 107, 53, 0.15);
}

.gallery-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2c3e50 100%);
  color: var(--color-text-on-dark);
}

.faq-section .section-title {
  color: var(--color-primary);
}

.faq-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.custom-accordion .accordion-item {
  background: var(--color-bg-light);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.custom-accordion .accordion-button {
  background: var(--color-surface);
  color: var(--color-text-main);
  border: none;
  font-weight: 700;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--color-primary);
  color: white;
  box-shadow: none;
}

.custom-accordion .accordion-button:hover {
  background: var(--color-primary-light);
  color: white;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-primary);
}

.custom-accordion .accordion-body {
  background: var(--color-bg-light);
  color: var(--color-text-muted);
  padding: 1.25rem;
  line-height: 1.7;
}

.custom-accordion .accordion-button::after {
  filter: none;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2c3e50 100%);
  padding-bottom: 5rem !important;
  color: var(--color-text-on-dark);
}

.contact-section .section-title {
  color: var(--color-primary);
}

.contact-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(135deg, #1a1d29 0%, #2c3e50 100%);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  margin-top: var(--spacing-xs);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.footer p {
  margin: 0;
}

.footer-brand {
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--font-size-lg);
}

.footer-brand-link {
  color: var(--color-text-on-dark) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-brand-link:hover {
  color: var(--color-primary) !important;
}

.footer-brand i {
  color: var(--color-primary);
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.footer-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.social-icon:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  margin-top: var(--spacing-md);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-xs);
}

/* ========================================
   MODALS
   ======================================== */
.modal-content {
  background: var(--color-bg-light);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  background: var(--color-primary);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 1.5rem;
}

.modal-title {
  color: white;
  font-weight: 700;
}

.modal-body {
  color: var(--color-text-muted);
  padding: 2rem;
}

/* Booking Modal - Transparent content with visible close button */
.booking-modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

.booking-modal-header {
  background: transparent;
  border-bottom: none;
  padding: 0 1rem 1rem 0;
  justify-content: flex-end;
}

.booking-close-btn {
  width: 2.2rem;
  height: 2.2rem;
  background-color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 0;
  font-size: 1.5rem;
  color: #ff6b35;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}

.booking-close-btn:hover {
  background-color: #ff6b35;
  color: white;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transform: scale(1.05);
}

.booking-close-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.booking-modal-body {
  padding: 0;
  background: transparent;
}

.modal-body h6 {
  color: var(--color-text-main);
  font-weight: 700;
}

.modal-body ul {
  color: var(--color-text-muted);
}

.modal-body .lead {
  color: var(--color-text-main);
  font-weight: 600;
}

.modal-body strong {
  color: var(--color-text-main);
}

/* Video modal specific styling */
#videoModal .modal-body {
  background: #000;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

#gridVideo {
  max-height: 70vh;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #000;
  border-radius: var(--radius-md);
}

.modal .form-label {
  color: var(--color-text-main);
  font-weight: 600;
}

.modal .form-control,
.modal .form-select,
.modal textarea.form-control {
  background: var(--color-bg-light);
  border: 2px solid var(--border-color);
  color: var(--color-text-main);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.modal .form-control::placeholder,
.modal textarea.form-control::placeholder {
  color: var(--color-text-light);
  opacity: 0.7;
}

.modal .form-control:focus,
.modal .form-select:focus,
.modal textarea.form-control:focus {
  background: var(--color-bg-light);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
  color: var(--color-text-main);
  outline: none;
}

.modal .form-select option {
  background: var(--color-bg-light);
  color: var(--color-text-main);
}

.modal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.modal .btn-close:hover {
  opacity: 1;
}

.modal-footer {
  border-top: 2px solid var(--border-color);
  padding: 1.5rem;
  background: var(--color-surface);
}

.modal .btn-primary {
  background: var(--color-primary);
  border: none;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}

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

.modal .btn-secondary {
  background: var(--color-surface);
  border: 2px solid var(--border-color);
  color: var(--color-text-main);
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal .btn-secondary:hover {
  background: var(--color-bg-light);
  border-color: var(--color-text-muted);
  color: var(--color-text-main);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* ========================================
   BOOTSTRAP OVERRIDES & UTILITIES
   ======================================== */
.modal-backdrop {
  background-color: var(--color-bg-dark);
}

.modal-backdrop.show {
  opacity: 0.7;
}

/* Button consistency across the site */
.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: white;
}

.btn-outline-primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

/* ========================================
   ERROR PAGES (404, ERROR)
   ======================================== */
.error-page-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2c3e50 100%);
  color: var(--color-text-on-dark);
}

.error-content {
  padding: var(--spacing-2xl);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-primary), #ff8c61);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
}

.error-icon i {
  font-size: 4rem;
  color: white;
}

.error-title {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 2.5rem;
}

.error-message {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ========================================
   NOTIFICATION COMPONENT
   ======================================== */
.notification {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 9999;
  max-width: 500px;
  width: 90%;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--color-bg-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--color-primary);
}

.notification.success .notification-content {
  background: linear-gradient(135deg, #1a5f3d 0%, #267d4f 100%);
  border-color: #28a745;
}

.notification.error .notification-content {
  background: linear-gradient(135deg, #5f1a1a 0%, #7d2626 100%);
  border-color: #dc3545;
}

.notification-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.notification-icon i {
  font-size: 1.5rem;
  color: white;
}

.notification.success .notification-icon i {
  color: #28a745;
}

.notification.error .notification-icon i {
  color: #dc3545;
}

.notification-message {
  flex: 1;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}

.notification-close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .error-title {
    font-size: 2rem;
  }

  .error-icon {
    width: 100px;
    height: 100px;
  }

  .error-icon i {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .carousel-content {
    min-height: 350px;
    padding: 2rem !important;
  }

  .carousel-icon {
    font-size: 3rem;
  }

  .error-content {
    padding: var(--spacing-lg);
  }

  .error-title {
    font-size: 1.75rem;
  }

  .error-icon {
    width: 80px;
    height: 80px;
  }

  .error-icon i {
    font-size: 3rem;
  }

  .notification {
    top: 60px;
  }

  .notification-content {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .notification-icon {
    width: 36px;
    height: 36px;
  }

  .notification-icon i {
    font-size: 1.25rem;
  }

  .notification-message {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .footer-link {
    width: 100%;
    justify-content: center;
  }

  /* Center contact form on mobile */
  .contact-section .row > div {
    display: flex;
    justify-content: center;
  }

  #zf_div_RY0rMkWGHXciX6fXuaCIUgkpMY8UsQAPYedTQalVkcA {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

/* ========================================
   IMAGE LIGHTBOX
   ======================================== */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 2001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-close i,
.lightbox-prev i,
.lightbox-next i {
  font-size: 1.5rem;
  line-height: 1;
}

/* Responsive lightbox */
@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .lightbox-close i,
  .lightbox-prev i,
  .lightbox-next i {
    font-size: 1.25rem;
  }

  .lightbox-content {
    max-width: 95vw;
    max-height: 85vh;
  }

  .lightbox-content img {
    max-height: 85vh;
  }
}

/* ========================================
   INSTAGRAM FOLLOW CARD
   ======================================== */
.instagram-card-container {
  text-align: center;
  padding: 0;
}

.instagram-card-title {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.instagram-profile-link {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  width: 110px;
  height: 110px;
  border: 3px solid #ff6b35;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
  margin-bottom: 0;
}

.instagram-profile-link:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.35);
}

.instagram-profile-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-username {
  margin: 0;
  margin-top: 0;
}

.instagram-username a {
  font-size: 0.95rem;
  color: #ff6b35;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.instagram-username a:hover {
  opacity: 0.8;
}
