/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #222222;
  background-color: #F5F5F5;
  line-height: 1.6;
}

.text-emphasized {
  color: #E3C521;
  font-size: 1.3rem;
}

.text-emphasized a {
  text-decoration: none;
}

/* Hero Section con Video */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  display: none;
  color: #E3C521;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  margin-bottom: 200px;
  border-radius: 8px;
  text-align: center;
}

.logo {
  width: 90%;
  top: 0;
  position: absolute;
}

/*
.logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}*/

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Project Detail Sections */
.project-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

.project {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.project iframe {
  width: 100%;
  height: 500px;
  padding-top: 20px;
  /*height: 360px;*/
  border: none;
}

.project iframe.youtube {
  padding-top: 0;
}

.project-info {
  padding: 20px;
  text-align: left;
}

.project-info h2 {
  font-size: 1.8rem;
  color: #222222;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 1rem;
  color: #8C8C8C;
}

/* Podcast Link Styling */
.podcast-link {
  background-color: #E3C521;
  color: #222222;
  text-align: center;
  padding: 20px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.2rem;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.audio-excerpts {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  flex: 2;
  gap: 20px;
}

.excerpts-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.sonusvox-photo {
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.sonusvox-desc-bot {
  display: none;
}

.audio-item h3 {
  font-size: 1.2rem;
  color: #E3C521;
  margin-bottom: 10px;
}

audio {
  width: 100%;
  outline: none;
}

/* Bio Section */
.bio-section {
  max-width: 1200px;
  margin: 40px auto;
}

.bio-container {
  margin: 0 10px;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bio-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.profile-photo {
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.bio-text {
  flex: 2;
}

.bio-text h2 {
  font-size: 2rem;
  color: #222222;
  margin-bottom: 10px;
}

.bio-text p {
  font-size: 1rem;
  color: #8C8C8C;
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #222222;
  color: #F5F5F5;
}

footer a {
  color: #E3C521;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .overlay {
    display: block;
  }

  .bio-content {
    flex-direction: column;
  }

  .profile-photo {
    max-width: 100%;
  }

  .sonusvox-desc-top {
    display: none;
  }

  .sonusvox-desc-bot {
    display: block;
  }

  .sonusvox-photo {
    max-width: 100%;
  }

  .project {
    flex-direction: column;
  }

  .project iframe {
    height: 185px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}