/* Base styles */
:root {
  --primary-color: #FF6B6B;
  --secondary-color: #4ECDC4;
  --dark-color: #1A535C;
  --light-color: #F7FFF7;
  --accent-color: #FFE66D;
  --text-color: #292F36;
  --gradient-start: #FF6B6B;
  --gradient-end: #FF8E53;
  --section-padding: 6rem 0;
  --border-radius: 8px;
  --transition-speed: 0.3s;
  --font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

h1, h2, h3, h4 {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-speed);
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Header styles */
header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 60px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-color);
  position: relative;
}

nav a:hover {
  color: var(--primary-color);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed);
}

nav a:hover::after {
  width: 100%;
}

#play-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff6b6b;
  color: white;
    font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: bold;
  transition: transform var(--transition-speed);
  width: fit-content;
  cursor: pointer;
  margin: 1.5rem 0;
}

#play-button:hover {
  transform: scale(1.05);
}

#play-icon, #pause-icon {
  fill: white;
}

.hidden {
  display: none !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark-color);
  border-radius: 3px;
}

/* Hero section */
.hero {
  background: linear-gradient(140deg, #1A535C, #4ECDC4);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 80vh;
  min-height: 600px;
}

.hero-container {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
  animation: fadeInLeft 1.2s ease-out;
}

.hero-visual {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  z-index: 1;
}

.circle-animation {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: bold;
  font-size: 1rem;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--gradient-end);
  transform: translateY(-3px);
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
  z-index: -1;
}

.cta-button:hover::after {
  animation: ripple 1s ease-out;
}

/* Content sections */
.content-section {
  padding: var(--section-padding);
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  text-align: center;
}

.content-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

/* Specific section styles */
.about-section {
  background-color: white;
}

.about-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.programs-section {
  background-color: var(--dark-color);
  color: white;
}

.programs-section h2::after {
  background-color: var(--secondary-color);
}

.hosts-section {
  background-color: var(--light-color);
}

.contact-section {
  background-color: var(--dark-color);
  color: white;
}

.contact-section h2::after {
  background-color: var(--secondary-color);
}

/* Two column layout */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.stats-container {
  display: none;
}

.stat {
  display: none;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.program-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  border-top: 4px solid var(--secondary-color);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.program-time {
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.program-card h3 {
  margin-bottom: 0.8rem;
}

.view-all {
  display: inline-block;
  color: var(--accent-color);
  font-weight: bold;
  margin-top: 2rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-speed);
  padding-bottom: 3px;
}

.view-all:hover {
  border-color: var(--accent-color);
}

/* Hosts */
.hosts-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
}

.host-card {
  text-align: center;
  transition: transform var(--transition-speed);
}

.host-card:hover {
  transform: translateY(-8px);
}

.host-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--dark-color);
  margin: 0 auto 1.5rem;
  background-image: url('https://source.unsplash.com/random/150x150/?person');
  background-size: cover;
  background-position: center;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.host-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

/* Sponsor section styles have been moved to sponsor-styles.css to avoid exceeding file size limits */

/* Newsletter section */
.newsletter-section {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-section h2 {
  margin-bottom: 1.5rem;
  color: white;
}

.newsletter-section h2::after {
  display: none;
}

.newsletter-section p {
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

#newsletter-form {
  display: flex;
  gap: 0.8rem;
  max-width: 500px;
  margin: 0 auto;
}

#newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#newsletter-form button {
  background-color: var(--dark-color);
  color: white;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#newsletter-form button:hover {
  background-color: var(--text-color);
  transform: translateY(-3px);
}

/* Contact section */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  transition: transform var(--transition-speed);
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item svg {
  fill: var(--accent-color);
  min-width: 24px;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.social-link svg {
  fill: white;
}

.social-link:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

/* Footer */
footer {
  background-color: var(--text-color);
  color: white;
  padding: 5rem 0 1rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo-image {
  height: 75px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  opacity: 0.8;
  transition: opacity var(--transition-speed), color var(--transition-speed);
}

.footer-column a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-app-link {
  display: flex;
  align-items: center;
}

.footer-app-link svg {
  transition: transform var(--transition-speed);
}

.footer-app-link:hover svg {
  transform: scale(1.2);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Player styles */
#player-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 1000;
  transition: all 0.3s ease;
}

.player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background-color: var(--dark-color);
  color: white;
}

.close-player {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0 5px;
}

.album-art-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.album-art-container iframe {
  width: 100%;
  height: 100%;
}

.player-controls {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: var(--light-color);
}

.player-button {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 5px 10px rgba(255, 107, 107, 0.2);
}

.player-button:hover {
  transform: scale(1.1);
}

.player-button svg {
  fill: white;
}

.track-info {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.3;
}

#player-current-track {
  font-weight: bold;
}

/* Responsive design */
@media (max-width: 992px) {
  .hero {
    height: auto;
    padding: 6rem 0 4rem;
  }
  
  .hero-visual {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    margin: 4rem auto 0;
    width: 400px;
    height: 400px;
  }
  
  .hero-container {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content {
    text-align: center;
    animation: fadeInDown 1.2s ease-out;
  }
  
  #play-button {
    margin: 1.5rem auto;
  }
  
  .two-columns {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .stats-container {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    padding: 80px 0 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  
  nav.active {
    transform: translateX(0);
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  nav a {
    font-size: 1.2rem;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 100;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  
  .hero-visual {
    width: 300px;
    height: 300px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .content-section {
    padding: 4rem 0;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .content-section h2 {
    font-size: 2rem;
  }
  
  .program-grid, .hosts-container {
    grid-template-columns: 1fr;
  }
  
  #newsletter-form {
    flex-direction: column;
  }
  
  .stat {
    width: 100%;
  }
  
  .hero-visual {
    width: 250px;
    height: 250px;
  }
  
  #player-container {
    width: 90%;
    right: 5%;
    left: 5%;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

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

@keyframes soundBars {
  0%, 100% { height: 10px; }
  50% { height: 40px; }
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

/* Cookie consent popup */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 83, 92, 0.95);
  color: white;
  padding: 1rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-text {
  flex: 1;
  padding-right: 1rem;
}

.cookie-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.cookie-text p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.cookie-accept {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.cookie-accept:hover {
  background-color: var(--gradient-end);
  transform: translateY(-2px);
}

.cookie-settings {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    padding-right: 0;
    padding-bottom: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}