header {
  background-color: #000;
  color: #fff;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  position: relative;
}
header nav .logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  margin-right: 2rem;
  flex-shrink: 0;
}
header nav .hamburger {
  display: block;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
}
header nav .hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  margin: 4px 0;
  transition: 0.3s;
}
header nav .hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
header nav .hamburger.open span:nth-child(2) {
  opacity: 0;
}
header nav .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
header nav #menu {
  overflow: hidden;
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: center;
}
header nav #menu li {
  list-style: none;
}
header nav #menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
}
header nav #menu li.active a {
  color: #fff;
  border-bottom: 2px solid #fff;
  font-weight: bold;
}
header nav #menu.active {
  display: flex;
}

@media (min-width: 1024px) {
  header nav .hamburger {
    display: none;
  }
  header nav .logo {
    font-size: 2rem;
  }
  header nav #menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    width: auto;
    height: auto;
    gap: 1rem;
  }
  header nav #menu li a {
    font-size: 1.2rem;
  }
  header nav #menu li a:hover {
    border-bottom: 2px solid #fff;
  }
}
footer {
  text-align: center;
  padding: 1em;
  background-color: black;
  color: #fff;
  border-top: 1px solid;
  margin-top: auto;
}
footer p {
  font-size: 0.7em;
  margin-top: 1em;
}
footer a {
  margin: 0 8px;
}

#book {
  padding: 0 1em;
}
#book #images-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding: 20px 0;
}
#book #images-container img {
  cursor: pointer;
  transition: transform 0.2s;
}
#book #images-container img:hover {
  transform: scale(1.05);
}
#book #image-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#book #image-modal .modal-content {
  position: relative;
  z-index: 1000;
}
#book #image-modal .modal-content img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 16px;
  object-fit: contain;
  display: block;
  background: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
}
#book #image-modal #close-modal {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 1001;
  user-select: none;
  transition: color 0.2s;
}
#book #image-modal #close-modal:hover {
  color: #aaa;
}
#book #image-modal .modal-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1001;
}
#book #image-modal .modal-arrow svg {
  width: 40px;
  height: 40px;
}
#book #image-modal .modal-arrow:hover {
  filter: brightness(1.5);
}
#book #image-modal #prev-img {
  left: 24px;
}
#book #image-modal #next-img {
  right: 24px;
}

@media (min-width: 1024px) {
  #book #images-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
#curriculum ul {
  list-style: disc;
  padding-left: 1.5em;
}
#curriculum button {
  background: black;
  color: white;
  padding: 1em;
  font-weight: bold;
  font-size: 1.2em;
  margin: 1em 0;
  border-radius: 5px;
}
#curriculum button:hover {
  background: #333;
  cursor: pointer;
}

@media (min-width: 1024px) {
  #videos .video-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
iframe .vp-title Title_module_title__2159b884 {
  display: none;
}

#dubbed .full-video {
  margin-bottom: 20px;
}

#contact .icons-container {
  margin-bottom: 1em;
}
#contact p a {
  text-decoration: underline;
}

#podcast .info img {
  margin-bottom: 1em;
}
#podcast .icons-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 10px;
  margin-bottom: 20px;
}
#podcast .icons-container span {
  display: none;
}
#podcast .icons-container i {
  margin-right: 5px;
}
#podcast .icons-container span:hover {
  font-weight: bold;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  #podcast .info iframe {
    width: 100%;
    display: block;
    border: none;
  }
  #podcast .icons-container span {
    display: inline;
  }
  #podcast .video-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
html, body {
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.menu-open {
  overflow: hidden;
}
body main {
  flex: 1;
}
body main p {
  line-height: 1.6;
  margin-bottom: 1em;
}
body main h1, body main h2, body main h3 {
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 0.3em;
}
body main h1 {
  font-size: 2em;
}
body img, body iframe {
  width: 100%;
  height: auto;
}
body a i {
  font-size: 1.8rem;
  color: #e1306c;
  margin-right: 1.2rem;
  transition: transform 0.2s, color 0.2s;
  vertical-align: middle;
}
body footer a i.fa-linkedin,
body footer a i.fa-instagram {
  color: #fff;
}
body a i.fa-linkedin {
  color: #0077b5;
}
body a i.fa-envelope {
  color: #fff;
}
body a i.fa-x-twitter {
  background: #000;
  color: #fff;
}
body a i.fa-whatsapp {
  color: #25d366;
}
body a i.fa-youtube {
  color: #ff0000;
}
body a i.fa-spotify {
  color: #1ed760;
}
body a i:hover {
  transform: scale(1.2) rotate(-5deg);
  filter: brightness(1.2);
}
body .two-columns .info {
  padding: 0 1em;
  margin-bottom: 1em;
}
body .video-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 24px;
}
body .full-video {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body .full-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
  margin: 0;
  padding: 0;
}
body .video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
  margin: 0;
  padding: 0;
}

#about-me, #videos, #podcast {
  padding: 0 1em;
}

@media (min-width: 1024px) {
  #about-me .images-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin: 32px auto;
    padding: 16px;
  }
  #about-me .images-container img {
    width: 48%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
}

@media (min-width: 1024px) {
  html body #curriculum .two-columns,
  html body #podcast .two-columns {
    height: auto;
    margin-bottom: 10px;
  }
  body #book,
  body #videos,
  body #curriculum .info,
  body #about-me .info,
  body #contact .info,
  body #podcast .info,
  body #dubbed .info {
    margin: 0 50px;
  }
  body a i {
    font-size: 2rem;
  }
  body main {
    flex-direction: row;
    padding: 0;
  }
  body .two-columns {
    display: flex;
    height: 100vh;
    width: 100%;
  }
  body .two-columns .photo {
    width: auto;
    display: flex;
    overflow: hidden;
  }
  body .two-columns .photo img {
    max-width: 100%;
    max-height: 100vh;
  }
  body .two-columns .info {
    width: 50vw;
    margin-bottom: 0;
  }
  body .two-columns div:nth-child(2) {
    margin-left: auto;
  }
  body .video-container {
    display: grid;
  }
}
form {
  margin: 40px auto;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  resize: vertical;
}

input:focus, textarea:focus {
  border-color: #007bff;
  outline: none;
}

button[type=submit] {
  background: black;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

button[type=submit]:hover {
  background: white;
  color: black;
  border: 1px solid black;
}

/*# sourceMappingURL=main.css.map */
