html {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #CCCCCC;
  margin: 0; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #333;
}

.container {
  display: flex;
  background-color: white;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  flex: 1;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* Left Column - Title */
.left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.radio-title {
  font-family: Barriecito;
  font-size: 96px;
  font-weight: bold;
}

.radio-subtitle {
  margin-top: 20px;
  margin-bottom: 20px; 
  font-size: 24px;
  color: #667;
  font-family: Sansation;
  font-weight: normal;
  line-height: 1.2;
}

.radio-cookies {
  margin-top: 30px;
  font-size: 16px;
  color: #A44;
  font-family: Barriecito, sans-serif;
  font-weight: normal;
}

.contact {
  margin-top: 30px;
  font-size: 14px;
  color: #999;
  font-family: Sansation, sans-serif;
}

/* Right Column - Image and Player */
.right {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 30px;
}

.logo {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.player {
  width: 100%;
  max-width: 500px;
  padding-top: 1rem;
}

.metadata {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #666;
  font-family: 'Arial', sans-serif;
  padding: 8px;
  background-color: #f5f5f5;
  border-radius: 4px;
  min-height: 20px;
}

.listen_at {
  margin-bottom: 1em;
  padding-top: 1em; /* Adds space inside, above the text */
  padding-bottom: 0.1em; /* Adds space inside, below the text */
  text-align: center;
  border-top: 1px solid #bbb;
}

/* Styling for the new Programación section */
.programacion {
 
  margin-bottom: 0.1em;
  padding-top: 0.1em; /* Adds space inside, above the text */
  padding-bottom: 0.1em; /* Adds space inside, below the text */
  text-align: center;
}

.programacion h3 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  font-family: 'Barriecito', cursive; /* Matches your main title font */
  font-size: 2em;
  color: #333;
}

.programacion p {
  font-family: 'Sansation', sans-serif; /* Matches your subtitle font */
  font-size: 0.9em;
  line-height: 1.2;
  color: #667;
}

.lunes-domingo {
  margin: 0.1em;;
    font-size: 1.1em;
    font-weight: bold;
    color: #555;
}

.zarzuela-24-7 {
    margin: 0.1em;
    font-size: 1.1em;
    color: #555;

}


/* Responsive for small screens */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 0 1rem;
  }
  
  .left, .right {
    width: 100%;
    padding: 1rem;
  }
  
  .left {
    flex: none;
    padding 0;
  }
  
  .right {
    flex: none;
    padding: 0;
  }
  
  .radio-title {
    font-size: 48px;
  }
  
  .radio-subtitle {
    font-size: 18px;
  }
  
  .logo {
    max-height: 400px;
  }
} 