* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: #1f1f1f;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-button {
  background: #e67e22;
  color: white;
  padding: 12px 20px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

/* Featured Episode */
.featured-episode {
  padding: 40px 0;
  text-align: center;
}

.player-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}

.player-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* About Section */
.about {
  padding: 40px 0;
  text-align: center;
}

.about h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #1f1f1f;
}

.about-card {
  background: #ffffff;
  border-left: 6px solid #1f1f1f;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px 25px;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
}

/* Hosts Section */
.hosts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
}

.host-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
  max-width: 280px;
  flex: 1 1 260px;
}

.host-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.host-card h3 {
  margin-top: 15px;
  color: #1f1f1f;
  font-size: 1.3em;
}

.host-card p {
  font-size: 1em;
  color: #555;
  margin-top: 10px;
}

/* Listen Links */
.listen-links {
  text-align: center;
  padding: 40px 0;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.badge {
  text-align: center;
  width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.badge img {
  max-width: 90px;
  margin: 0 auto;
}

.badge p {
  margin-top: 10px;
  font-size: 0.95em;
  color: #444;
}

/* Footer */
.footer {
  background: #1f1f1f;
  color: #ccc;
  text-align: center;
  padding: 30px 0;
}

.footer a {
  color: #e67e22;
  text-decoration: none;
  font-weight: bold;
}

.episode-scroll {
  padding: 40px 0;
  text-align: center;
}

.episode-scroll h2 {
  margin-bottom: 20px;
  color: #1f1f1f;
}

.scroll-row {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.episode-card {
  min-width: 280px;
  flex: 0 0 auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
  scroll-snap-align: start;
}

.episode-card h3 {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #1f1f1f;
}

.episode-card p {
  font-size: 0.95em;
  margin: 5px 0;
  color: #555;
}

.episode-card a {
  display: inline-block;
  margin-top: 10px;
  color: #e67e22;
  text-decoration: none;
  font-weight: bold;
}

/* Optional: make scrollbar subtle */
.scroll-row::-webkit-scrollbar {
  height: 6px;
}

.scroll-row::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.contact {
  padding: 40px 0;
  text-align: center;
}

.contact h2 {
  margin-bottom: 30px;
  color: #1f1f1f;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 20px;
}

.contact-form label {
  font-weight: bold;
  font-size: 0.95em;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.contact-form button {
  background-color: #e67e22;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.2s ease;
}

.contact-form button:hover {
  background-color: #cf6112;
}
.form-status {
  margin-top: 15px;
  font-weight: bold;
  font-size: 0.95em;
  padding: 12px 15px;
  border-radius: 6px;
  display: inline-block;
  max-width: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
}

/* Success Message */
.form-status.success {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

/* Error Message */
.form-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}


/* Responsive Tweaks */
@media (max-width: 780px) {
  .badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 30px 40px;
  }

  .hosts {
    flex-direction: column;
    align-items: center;
  }

  .about-card {
    padding: 20px 15px;
  }

  .hero,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact-form{
    padding-left:10% ;
    padding-right:10% ;
  }
}
