@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* --- GLOBAL & RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  overflow-x: hidden;
  background-color: #1c1c1d;
  color: #fff;
}

/* --- BACKGROUND VIDEO & OVERLAY --- */
video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1c1c1d;
  opacity: 0.65;
  z-index: 0; /* Behind content, above video */
}

/* --- WRAPPER --- */
.wrapper {
  width: 100vw;
  min-height: 100vh;
  color: #fff;
  position: relative;
  z-index: 2; /* Above overlay */
  display: flex;
  flex-direction: column;
}

/* --- HEADER & NAVIGATION --- */
header {
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 0;
  background-color: rgba(28, 28, 29, 0.85);
  z-index: 100; /* Above other content */
}

.language-switcher {
  display: flex;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.3em 0.6em;
  margin-left: 0.5em;
  cursor: pointer;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.9em;
  transition: all 0.3s ease;
}
.lang-btn:first-child {
  margin-left: 0;
}

.lang-btn:hover,
.lang-btn.active {
  background-color: #fff;
  color: #1c1c1d;
  border-color: #fff;
}

.navbar {
  /* Desktop: visible by default */
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
}

.menu li {
  margin-left: 1.8em;
}
.menu li:first-child {
  margin-left: 0;
}

.menu a {
  color: #fff;
  text-decoration: none;
  padding: 0.5em 0;
  position: relative;
  font-weight: 500;
}
.menu a::after {
  /* Underline effect */
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 5px;
  right: 0;
  background: #fff;
  transition: width 0.3s ease;
}
.menu a:hover::after {
  width: 100%;
  left: 0;
  background: #fff;
}
.menu a:hover {
  text-decoration: none;
}

/* --- HERO SECTION (MAIN) --- */
.main {
  margin: 0 auto;
  width: 80vw;
  max-width: 1200px;
  min-height: calc(100vh - 100px); /* Adjust if header height changes */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2em 0;
}

.main img {
  /* Logo */
  max-width: 90%;
  max-height: 55vh;
  object-fit: contain;
  margin-bottom: 2em;
}
.info-content {
  margin-top: 1em;
}

.listen-main-btn {
  padding: 12px 30px;
  background-color: #fff;
  color: #1c1c1d;
  border: 2px solid #fff;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.listen-main-btn:hover {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* --- GENERAL SECTION STYLING --- */
.bio,
.music-section,
.videos,
.shows-section,
.faq-section,
.contact-section {
  padding: 3em 2em;
  position: relative;
  z-index: 2; /* Above overlay */
  background-color: rgba(28, 28, 29, 0.6);
  margin-top: 3em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bio:first-of-type,
.music-section:first-of-type,
.videos:first-of-type,
.shows-section:first-of-type,
.faq-section:first-of-type,
.contact-section:first-of-type {
  margin-top: 0;
  border-top: none;
}
.contact-section {
  border-bottom: none;
}

.section-title,
.section-title-v2 {
  color: #fff;
  font-size: 2.5em;
  margin-bottom: 1em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-title-left {
  text-align: left !important;
  margin-bottom: 0.5em !important;
}

/* --- BIO SECTION --- */
.bio {
  display: grid;
  grid-template-columns: 1fr; /* Default for mobile */
  gap: 2em;
  align-items: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.bio img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  justify-self: center;
}
.bio-info {
  color: #fff;
  text-align: left;
}
.bio-info p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 1em;
  text-align: justify;
  line-height: 1.7;
}
.divider {
  height: 3px;
  width: 80px;
  background-color: #e60073; /* Brand color */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.bio-info .divider {
  margin-left: 0;
}

/* --- MUSIC SECTION --- */
.music-section,
.videos {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.container-one,
.container-two {
  /* Used for Spotify embeds, can be generic */
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2em;
  margin-bottom: 2em;
}
.spotify-section {
  flex: 1 1 300px; /* Grow, shrink, base width */
  min-width: 280px;
  border-radius: 12px;
  overflow: hidden;
}
.spotify-section iframe {
  border-radius: 12px;
}

/* --- CLIPS (VIDEOS) SECTION --- */
.video-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
  margin-bottom: 2em;
}
.clips {
  flex: 1 1 300px;
  min-width: 280px;
  text-align: center;
}
.clips img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.clips:hover img {
  transform: scale(1.05);
}
.clips a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.clips h2 {
  margin-top: 0.5em;
  font-size: 1.1em;
}
.clips h3 {
  font-size: 0.9em;
  font-weight: 400;
  opacity: 0.8;
}

.view-all-container {
  text-align: center;
}

/* --- SHOWS SECTION --- */
.shows-section {
  text-align: center;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5em;
  max-width: 1000px;
  margin: 2em auto;
  padding: 0 1em;
}

.shows-section .container-tickets.show-item-lola {
  background-color: rgba(255, 255, 255, 0.9);
  color: #1c1c1d;
  border-radius: 12px;
  padding: 1.5em;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}
.show-item-details {
  flex-grow: 1;
}

.shows-section .container-tickets.show-item-lola h2 {
  font-size: 1.3em;
  color: #e60073;
  margin-bottom: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
}

.shows-section .container-tickets.show-item-lola h3 {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.3em;
}

.shows-section .container-tickets.show-item-lola p {
  font-size: 1em;
  margin-bottom: 0.5em;
  font-weight: 400;
}

.tickets-lola {
  padding: 10px 20px;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  margin-top: 1em;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  line-height: normal;
  box-sizing: border-box;
  border: 2px solid transparent;
}
.show-item-button-link {
  display: block;
  margin-top: auto;
  text-decoration: none;
}
.show-item-button-link .tickets-lola {
  width: 100%;
}

.tickets-lola:not([disabled]) {
  color: #fff;
  background-color: #e60073;
  border-color: #e60073;
  cursor: pointer;
}
.tickets-lola:not([disabled]):hover {
  background-color: #fff;
  color: #e60073;
  border-color: #e60073;
}

.tickets-lola-sold-out,
.tickets-lola[disabled] {
  background-color: rgba(28, 28, 29, 0.2) !important;
  color: rgba(28, 28, 29, 0.6) !important;
  border-color: rgba(28, 28, 29, 0.3) !important;
  cursor: not-allowed !important;
}
.tickets-lola-sold-out:hover,
.tickets-lola[disabled]:hover {
  background-color: rgba(28, 28, 29, 0.2) !important;
  color: rgba(28, 28, 29, 0.6) !important;
  border-color: rgba(28, 28, 29, 0.3) !important;
}

/* --- BUTTONS (View All Clips, Contact Submit) --- */
.view-all-clips-btn,
.btn-submit {
  padding: 10px 25px;
  color: #fff;
  background-color: #e60073;
  border: 2px solid transparent;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.view-all-clips-btn:hover,
.btn-submit:hover {
  background-color: transparent;
  border-color: #e60073;
  color: #e60073;
}
.view-all-clips-btn {
  background-color: #fff;
  color: #1c1c1d;
  font-size: 1em;
  margin-top: 1em;
}
.view-all-clips-btn:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

/* --- FAQ SECTION (ACCORDION) --- */
.faq-section {
  padding: 3em 2em;
  position: relative;
  z-index: 2;
  background-color: rgba(28, 28, 29, 0.4);
  margin-top: 3em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.accordion-container {
  margin-top: 1.5em;
}
.accordion-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.accordion-header {
  background-color: transparent;
  color: #fff;
  padding: 1em 1.5em;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}
.accordion-header:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.accordion-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 1em;
}
.accordion-item.open .accordion-icon {
  transform: rotate(-135deg);
} /* Up arrow */

.accordion-content {
  padding: 0 1.5em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  line-height: 1.7;
}
.accordion-item.open .accordion-content {
  padding-top: 1em;
  padding-bottom: 1.5em;
}
.accordion-content p {
  margin: 0;
}

/* --- CONTACT SECTION --- */
.contact-section {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.container-contact {
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
}
.container-contact img {
  flex: 1 1 300px;
  max-width: 45%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
.contact-form {
  color: #fff;
  flex: 1 1 300px;
  max-width: 50%;
}
.contact-form h2 {
  margin-bottom: 0.5em;
}
.form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1em;
}
.form input,
.form textarea {
  padding: 12px 15px;
  margin-bottom: 1em;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  border-radius: 8px;
  outline: none;
}
.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.form input:focus,
.form textarea:focus {
  border-color: #e60073; /* Brand color */
  background: rgba(255, 255, 255, 0.15);
}
.form textarea {
  min-height: 120px;
  resize: vertical;
}
.btn-submit {
  align-self: flex-start;
  margin-top: 0.5em;
}

/* --- FOOTER --- */
footer.footer {
  padding: 2em 1em;
  background-color: #111;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 3em;
}
.social-links-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1em;
}
.social-icon {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-position: center;
  background-size: 55%;
  background-repeat: no-repeat;
  margin: 0.5em;
  transition: all 0.3s ease;
  display: inline-block;
}
.social-icon:hover {
  border-color: #e60073; /* Brand color */
  transform: translateY(-3px);
}
.social-icon:nth-of-type(1) {
  background-image: url(./media/instagram.png);
}
.social-icon:nth-of-type(2) {
  background-image: url(./media/x.png);
}
.social-icon:nth-of-type(3) {
  background-image: url(./media/spotify.png);
}
.social-icon:nth-of-type(4) {
  background-image: url(./media/youtube.png);
}
.social-icon:nth-of-type(5) {
  background-image: url(./media/tik-tok.png);
}

.footer-content {
  color: #aaa;
  font-weight: 400;
}
.footer-content h4 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.3em;
}
.footer-content p {
  font-size: 0.9em;
}

/* --- MOBILE MENU TOGGLE BUTTONS --- */
.open-menu-btn,
.close-menu-btn {
  display: none; /* Hidden by default, shown in media query */
  border: 0;
  font-size: 2rem;
  background-color: transparent;
  cursor: pointer;
  color: #fff;
}
.close-menu-btn {
  position: absolute;
  top: 1em;
  right: 1em;
  z-index: 201; /* Above mobile nav */
}

/* Language Dropdown */
.language-dropdown {
  position: relative;
  display: inline-block;
}

#language-dropdown-button {
  padding: 0.3em 0.8em;
  display: flex;
  align-items: center;
  gap: 0.3em;
}

#language-dropdown-button.active {
  background-color: #fff;
  color: #1c1c1d;
  border-color: #fff;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #2a2a2b;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
  z-index: 101;
  border-radius: 4px;
  left: 0;
  margin-top: 5px;
}

.dropdown-content a {
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-size: 0.9em;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.dropdown-content.show {
  display: block;
}

/* --- RESPONSIVE DESIGN (MEDIA QUERIES) --- */
@media (min-width: 769px) {
  /* Desktop adjustments */
  .bio {
    grid-template-columns: 380px 1fr;
  }
  .bio img {
    justify-self: start;
  }
  header {
    padding: 1em 2.5em;
  }
}

@media (max-width: 768px) {
  /* Mobile and Tablet adjustments */
  header {
    padding: 1em;
    justify-content: space-between;
  }
  .language-switcher {
    margin-right: 1em;
  } /* Space from hamburger icon */
  .open-menu-btn {
    display: block;
  }

  .navbar {
    /* Mobile Navigation: hidden by default */
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.97);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 200; /* Above header content, below close button */
  }
  .navbar.visible {
    /* Class added by JS to show mobile nav */
    opacity: 1;
    visibility: visible;
  }
  .menu {
    /* Mobile menu items */
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .menu li {
    margin-left: 0;
    width: 80%;
    text-align: center;
  }
  .menu a {
    font-size: 1.5rem;
    padding: 0.8em 0;
    display: block;
    width: 100%;
  }
  .menu a::after {
    display: none;
  } /* Remove underline effect for mobile nav items */

  .main {
    width: 90vw;
    min-height: calc(100vh - 70px);
  }
  .main img {
    /* Logo on mobile */
    max-width: 85%;
    max-height: 45vh;
  }

  .bio img {
    max-width: 70%;
    margin-bottom: 1em;
  }
  .section-title,
  .section-title-v2,
  .section-title-left {
    font-size: 1.8em;
  }

  .container-one,
  .container-two,
  .video-row {
    gap: 1.5em;
  }
  .spotify-section,
  .clips {
    flex-basis: 100%;
    min-width: unset;
  }

  .shows-grid {
    grid-template-columns: 1fr; /* Single column for event items on mobile */
    gap: 1.5em;
  }
  .container-tickets-announcement {
    /* Ensure announcement box is also responsive */
    width: 90%;
  }

  .container-contact {
    flex-direction: column;
  }
  .container-contact img,
  .contact-form {
    max-width: 100%;
  }
  .contact-form {
    margin-top: 1em;
  }

  footer.footer {
    padding: 1.5em 1em;
  }
  .social-links-container {
    margin-bottom: 1.5em;
  }
  .social-icon {
    height: 40px;
    width: 40px;
  }
}
