/* =========================
   SONGS DELICIOUS – HERO VARIABLES & BASE
   ========================= */
:root{
  --sd-bg-1:#1a0f2e;
  --sd-bg-2:#2a0f4a;
  --sd-magenta:#ff4fd8;
  --sd-cyan:#00d4ff;
  --sd-white:#f6f5ff;
  --sd-glow: 0 0 18px rgba(255,79,216,.55), 0 0 42px rgba(0,212,255,.25);
}

/* =================
   CSS VARIABLES & RESET
   ================= */
:root {
  /* Colors */
  --primary-dark: #20162D;
  --primary-medium: #2a1f3f;
  --primary-light: #8a79a8;
  --primary-lighter: #b19cd9;
  --accent-purple: #c9b8e0;
  --secondary-dark: #1a1525;
  --background-dark: #0C0C0E;
  --background-light: white;
  --text-dark: #333;
  --text-light: white;
  --text-gray: #666;
  
  /* Spacing */
  --section-padding: clamp(25px, 5vw, 35px);
  --content-padding: clamp(15px, 3vw, 30px);
  --mobile-padding: 15px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Shadows */
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.3);
  
  /* Border radius */
  --radius-small: 8px;
  --radius-medium: 15px;
  --radius-large: 25px;
  --radius-pill: 50px;
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--background-light);
  scroll-behavior: smooth;
}

/* Hide overlay elements globally */
.hover-overlay,
.hover-play-icon {
  display: none !important;
}

/* =================
   TYPOGRAPHY
   ================= */
.logo-text {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--text-light);
  text-align: center;
  font-family: 'Pacifico', cursive;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  margin-bottom: clamp(10px, 2vw, 20px);
}

.tagline-text {
  font-size: clamp(1.2rem, 2vw, 2rem);
  color: rgba(240, 240, 240, 1);
  margin-bottom: clamp(10px, 3vw, 20px);
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-weight: 300;
  letter-spacing: 2px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(8px, 2vw, 15px);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-light);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.section-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto clamp(20px, 4vw, 30px);
  text-align: justify;
  line-height: 1.8;
  font-weight: 300;
}

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

@keyframes flagWave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

@keyframes flagBounce {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.3) rotate(10deg); }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes sd-bg-rotate { 
  to { transform: rotate(360deg);} 
}

@keyframes sd-eq {
  0%,100%{ height:6px }
  50%{ height:28px }
}

@keyframes waveform {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

/* =================
   BUTTONS
   ================= */
.btn {
  padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 30px);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--primary-dark);
  background-color: var(--background-light);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(138, 121, 168, 0.4);
}

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

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary-dark);
}

.hero-main-button {
  background: linear-gradient(135deg, #FF6B9D 0%, #E91E63 50%, #C2185B 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-main-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.hero-main-button:hover::before {
  left: 100%;
}

.hero-main-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.6);
  background: linear-gradient(135deg, #FF6B9D 0%, #F06292 50%, #E91E63 100%);
  border: none;
  border-left: none;
  border-right: none;
}

.hero-main-button i {
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  background-color: var(--primary-light);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background-color: #9d8bb6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(138, 121, 168, 0.4);
}

/* =================
   UTILITY CLASSES
   ================= */
.centered-image,
.centered-button {
  text-align: center;
  margin: clamp(20px, 4vw, 30px) 0;
}

.lang-toggle:hover .lang-flag {
  animation: flagBounce 0.6s ease;
}

/* =================
   PERFORMANCE OPTIMIZATIONS
   ================= */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* GPU acceleration for frequently animated elements */
.thumbnail-item,
.video-item,
.team-member,
.process-step,
.stat-item,
.btn,
.lang-toggle {
  will-change: transform;
}

/* Optimize images for better loading */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Focus styles for better accessibility */
*:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Remove focus styles for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-light: #9d8bb6;
    --primary-lighter: #b19cd9;
  }
  
  .btn,
  .lang-toggle {
    border: 2px solid currentColor;
  }
}

/* Print styles */
@media print {
  .navbar,
  .sticky-contact-bar,
  .instagram-widget,
  .video-overlay,
  .play-button {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
  }
  
  body {
    color: #000 !important;
    background: #fff !important;
  }
}