@media (max-width: 960px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

.container {
    margin: 1em 0;
    padding: 0;
    width: 100vw;
    box-sizing: border-box;
  }

  /* Navigation */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    padding: 0;
  }

.menu-toggle img {
    width: 40px;
    height: 40px;
  }

.nav-links {
    display: none;
  }

.nav-links.active {
    display: flex;
    flex-direction: column;
  }

.nav-links li {
    padding: 0.75em 1em;
    text-align: center;
  }

.nav-links li a {
    font-size: 1.2em;
  }

.logo-container {
    max-height: 50px;
  }

.logo-link img {
    max-height: 40px;
  }

  nav.navbar,
.navbar {
    padding: 0.5rem 1rem;
    height: auto;
  }

  /* Hero Banner */
.slideshow-container,
.mySlides,
.mySlides img {
    width: 100vw !important;
    height: 150px !important;
    object-fit: cover;
    object-position: top;
    margin: 0;
    padding: 0;
    display: block;
  }

.caption-text {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  max-width: 90%;
  line-height: 1.2;
  z-index: 2;
}

.slideshow-container,
.mySlides {
  position: relative;
}

.mySlides {
  position: relative;
}

.mySlides img {
  display: block;
  width: 100vw;
  height: 150px;
  object-fit: cover;
  object-position: top;
}
  /* Footer */
.footer-content.container {
    margin: 0 auto !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

.footer-section,
.footer-embeds,
.footer-links-stack,
.contact-form {
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    text-align: left;
  }

.footer-embed-item,
.footer-embeds iframe {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    border: none;
    height: auto;
  }

.footer-embeds iframe[src*="spotify"] {
    height: 260px;
  }

.contact-form form {
    width: 100% !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.75em;
    box-sizing: border-box;
  }

.contact-form input,
.contact-form textarea,
.contact-form button {
    width: 100% !important;
    padding: 0.75em;
    font-size: 1rem;
    box-sizing: border-box;
  }

.footer-bottom {
    text-align: center;
    width: 100%;
    padding: 1rem;
  }

.footer-section a[href^="mailto:"] {
    font-size: 0.9rem;
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

.footer-section p {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    overflow-wrap: break-word;
  }

.social-icons-row {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }

  /* Carousel */
.review-carousel-container,
.review-carousel {
    width: 100vw;
    padding: 0;
    margin: 0;
    border-radius: 0;
  }

.review-carousel-track img {
    width: 100vw;
    max-height: 200px;
    aspect-ratio: 3 / 1;
    object-position: top;
  }

  #review-prevBtn,
  #review-nextBtn {
    font-size: 14px;
    padding: 10px;
    top: 45%;
    margin-top: -16px;
  }

  /* Sections */
.three-columns {
    padding: 2rem 1rem;
  }

.column {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

.column:last-child {
    border-bottom: none;
  }

.column .button {
    display: block;
    margin: 1rem auto 0 auto;
    text-align: center;
  }

.section-content,
.reverse .section-content {
    flex-direction: column;
    text-align: center;
  }

.section-content img,
.section-content .text {
    max-width: 100%;
  }

.section-content .text h2 {
    font-size: 1.5rem;
  }

.divider {
    width: 90%;
    margin: 2rem auto;
  }

  /* Cast Section */
.cast-section {
    padding: 0 1rem;
  }

.cast-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

.cast-card {
    width: 90%;
  }

.profile-image {
    width: 150px;
    height: 150px;
  }

.cast-name {
    font-size: 1.1rem;
  }

.cast-bio {
    font-size: 0.9rem;
  }

  /* Press Kit Grid */
.top-grid-container {
    padding: 2rem 1rem;
  }


.block-image {
    max-width: 100%;
  }

.button-group.center {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 960px) {
.mySlides {
    position: relative !important;
    height: 150px !important;
  }

.mySlides img {
    width: 100vw !important;
    height: 150px !important;
    object-fit: cover !important;
    object-position: top !important;
    display: block !important;
  }

.caption-text {
    position: absolute !important;
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.7rem !important;
    padding: 4px 8px !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    color: #8b52ff !important;
    text-align: center !important;
    line-height: 1.2 !important;
    border-radius: 4px;
    max-width: 90% !important;
    z-index: 2 !important;
  }
}

@media (max-width: 960px) {
.nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-2) !important;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
    overflow-y: auto;
  }

.nav-links.active {
    display: flex;
  }

.nav-links li {
    padding: 1rem 0;
    text-align: center;
  }

.nav-links li a {
    color: black;
    font-size: 1.5rem;
    text-decoration: none;
  }

.menu-toggle {
    z-index: 10000;
    position: relative;
  }
}

@media (max-width: 960px) {
.modal-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1rem;
    gap: 1rem;
  }

.modal-content img {
    width: 100% !important;
    max-width: 250px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

.modal-text {
    width: 100% !important;
    text-align: center !important;
  }
}


@media (min-width: 960px) {
.menu-toggle {
    display: none !important;
  }
}

@media (min-width: 960px) {
.modal-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

.modal-content img {
    margin-bottom: 0;
  }

.modal-text {
    text-align: left;
  }
}

@media (max-width: 960px) {
.carousel-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1rem;
    gap: 1rem;
  }

.carousel-content img {
    width: 100% !important;
    max-width: 300px;
    height: auto !important;
    margin: 0 auto;
    display: block;
  }

.carousel-content .text-block {
    width: 100%;
    text-align: center !important;
  }

.carousel-item {
    padding: 1rem 0;
  }
}

@media (max-width: 960px) {
.top-grid-container {
    width: 100% !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
  }

.top-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    width: 100% !important;
  }

.press-block {
    display: block !important;
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }

.media-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

.media-item {
    width: 100% !important;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 960px) {
.top-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }

.info-block {
    flex: 0 0 auto;
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: var(--bg-light);
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

.block-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto 0;
  }
}

@media (max-width: 960px) {
.cast-grid {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

.cast-card {
    width: 90%;
    max-width: 350px;
  }
}
