/* ASOCIACION PALCO & LA ESQUINA RADIO - CROWDFOUNDING LANDING PAGE STYLES */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --palco-navy: #1B365D;
  --palco-navy-dark: #102340;
  --palco-orange: #F26522;
  --palco-orange-hover: #D95314;
  --palco-yellow: #F5B800;
  --palco-teal: #00A896;
  --palco-purple: #5E49E2;
  --palco-light-bg: #F8FAFC;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1E293B;
  background-color: #F8FAFC;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', 'Inter', sans-serif;
}

/* Navbar Styling for crisp logo visibility */
.navbar-official {
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
}

/* Custom Gradients inspired by official brand */
.gradient-hero {
  background: linear-gradient(135deg, #102340 0%, #1B365D 50%, #1A497A 80%, #00A896 100%);
}

.gradient-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

.gradient-purple-accent {
  background: linear-gradient(135deg, #5E49E2 0%, #7C3AED 100%);
}

.glass-panel-light {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

/* Glow & Shadows */
.accent-glow {
  box-shadow: 0 0 30px -5px rgba(242, 101, 34, 0.45);
}

.accent-glow-yellow {
  box-shadow: 0 0 25px -5px rgba(245, 184, 0, 0.5);
}

/* Pulse & Live badge */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(242, 101, 34, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(242, 101, 34, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(242, 101, 34, 0);
  }
}

.live-pulse-badge {
  animation: pulse-ring 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #102340;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F26522;
}

/* Audio Wave Visualizer Animation */
.audio-bar {
  display: inline-block;
  width: 4px;
  height: 16px;
  background-color: #F5B800;
  border-radius: 2px;
  margin: 0 1px;
  animation: sound-wave 1.2s infinite ease-in-out alternate;
}

.audio-bar:nth-child(1) { animation-delay: 0.1s; height: 10px; }
.audio-bar:nth-child(2) { animation-delay: 0.3s; height: 18px; }
.audio-bar:nth-child(3) { animation-delay: 0.2s; height: 24px; }
.audio-bar:nth-child(4) { animation-delay: 0.4s; height: 14px; }
.audio-bar:nth-child(5) { animation-delay: 0.15s; height: 20px; }

@keyframes sound-wave {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1.2); }
}

.paused .audio-bar {
  animation-play-state: paused;
  height: 8px !important;
}

/* Modal Animations */
.modal-backdrop {
  background-color: rgba(16, 35, 64, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Custom Accordion Transition */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.accordion-content.active {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}

/* Range Slider Styling */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F26522;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(242, 101, 34, 0.6);
  border: 3px solid #FFFFFF;
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F26522;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(242, 101, 34, 0.6);
  border: 3px solid #FFFFFF;
}
