/* Basic styles for Musicon Festival */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@200;300;400;500;600;700&display=swap');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Disable horizontal scrolling */
    background-color: #dcdcdc !important; /* background for the body */
}

header {
    color: #fff;
    padding: 1rem;
    text-align: center;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav{
  position: fixed;
  z-index: 99;
  width: 100%;
  background: #dcdcdd !important; /* Changed background to white */
  font-family: 'League Spartan', sans-serif; /* Changed font to League Spartan */
  font-weight: 300;
  transition: height 0.3s ease; /* Smooth transition for height change */
  box-shadow:rgba(0, 0, 0, 0.3) 0px 0px 3px 0px;
}
nav.shrink {
  height: 50px; /* Shrink height on scroll */
  line-height: 50px; /* Adjust line height */
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 80px;
  line-height: 80px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .logo img {
  height: 35px;
  display: block;
  margin: auto 0; /* Vertically centers the icon */
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links{
  margin: 0;
}
.nav-links li{
  list-style: none;
  text-align: center;
}
.nav-links li a{
  color: #333; /* Changed text color to #333 */
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  padding: 9px 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.nav-links li a:hover{
  background: #e8e9e8;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #dcdcdd;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #dcdcdd;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #333;
  font-size: 20px;
  cursor: pointer;
  display: none;
  margin: 0;
}
.wrapper .btn.close-btn{
  color: #fff;
}

.logo-mobile {
  display: none;
  padding: 2rem 0;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.92); /* Black background with opacity */
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Initially hidden */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Fade-in effect */
  }

  #menu-btn:checked ~ .nav-links {
    opacity: 1; /* Show menu */
    visibility: visible; /* Make it visible */
  }

  .nav-links li a {
    color: #fff; /* White text color for nav links */
    padding: 0 20px;
    display: block;
    font-size: 20px;
    font-weight: 400; /* Slightly bolder font for better visibility */;
  }

  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.1); /* Slightly lighter hover effect */
  }

  .logo-mobile {
    display: block; /* Show mobile logo */
  }

  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    top: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    will-change: opacity; /* Optimize for smoother transitions */
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 15px); /* Start 50px below */
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0); /* End at its original position */
    opacity: 1;
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../img/background.png') no-repeat center center/cover;
  color: #fff;
  animation: fadeIn 1.5s ease-in-out; /* Increase duration for smoother fade-in */
  backface-visibility: hidden; /* Prevent flickering */
  overflow: hidden; /* Prevent overflow */  
  box-shadow: rgba(0, 0, 0, 0.75) 0px 0px 5px 0px;
}

.hero-section .container {
  max-width: 1300px;
  z-index: 11;
  position: relative;
  padding: 0 60px;
  opacity: 0; /* Initially hidden */
  animation: fadeIn 1.5s ease-in-out 1s forwards; /* Match duration with background */
  backface-visibility: hidden; /* Prevent flickering */
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  max-width: 400px;
  height: auto;
  z-index: 10;
  opacity: 0; /* Initially hidden */
  animation: slideUp 3s ease-in-out 1s forwards; /* Slide up after 1.5s */
  backface-visibility: hidden; /* Prevent flickering */
}

.hero-section img {
  width: 100%; /* Resize images based on column width */
  height: auto;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.2rem;
}

.hero-section .btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  background-color: #dcdcdd;
  color: #333;
  border: none;
  transition: background-color 0.3s ease;
  font-family: 'League Spartan', sans-serif; /* Changed font to League Spartan */
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0;
  box-shadow:rgba(0, 0, 0, 0.3) 0px 0px 3px 0px;
}

.hero-section .btn:hover {
  background-color: #fff;
  color: #333;
}

@font-face {
    font-family: 'Sequel100Black';
    src: url('../fonts/Sequel100Black-65.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.tickets-container {
    font-size: 1.5rem;
    font-family: 'Sequel100Black', sans-serif; /* Updated to use Sequel100Black */
    font-weight: 100;
    color: #333;
    flex-direction: column;
    color: #fff;
    text-transform: uppercase;
    opacity: 0; /* Initially hidden */
    animation: fadeIn 1.5s ease-in-out 1.5s forwards; /* Fade in 0.5s after the container */
}

.button-container {
  text-align: center; /* Center the button horizontally */
  margin-top: 1.25rem; /* Add some space above the button */
}

footer {
  background: #dcdcdc; /* White background for subsequent sections */
  padding: 2rem;
  text-align: center;
  font-family: 'League Spartan', sans-serif; /* Changed font to League Spartan */
  font-weight: 300;
  box-shadow:rgba(0, 0, 0, 0.3) 0px 0px 3px 0px;
}

.content-section-home {
  max-width: 1300px; /* Match the width of the wrapper in the menu */
  margin: 0 auto; /* Center the content */
  padding: 2rem; /* Add padding for spacing */
  text-align: center;
  font-family: 'League Spartan', sans-serif; /* Match the font style */
  font-weight: 300;
}

.content-section {
  max-width: 1300px; /* Match the width of the wrapper in the menu */
  margin: 0 auto; /* Center the content */
  padding: 2rem; /* Add padding for spacing */
  font-family: 'League Spartan', sans-serif; /* Match the font style */
  font-weight: 300;
  min-height: calc(100vh - 160px); /* Ensure it fills the screen minus header and padding */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
}

footer {
  font-size: 0.8rem;
}

.nmb {
  margin-bottom: 0 !important;
}

.col-md-4 {
  display: flex; /* Enable flexbox for alignment */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  text-align: center; /* Ensure text is centered */
  margin-bottom: 2rem; /* Add spacing between columns */
}

.footer-logo {
  width: 15px; /* Set a small size for the logo */
  height: auto;
  vertical-align: middle; /* Align the logo with the text */
  margin: 0 5px; /* Add spacing around the logo */
}

@media screen and (max-width: 768px) {
  .hero-section {
    display: block; /* Remove flex alignment */
    padding-top: 100px; /* Add padding at the top */
  }

  .hero-overlay { 
    max-width: 80%; /* Adjust width for smaller screens */
  }

  .hero-section .row {
    flex-direction: column; /* Stack columns vertically */
  }

  .tickets-container {
    font-size: 1.25rem;
  }
}

main {
  background-color: #fff; /* White background for main content */
  padding-top: 80px; /* Add padding to push content below the fixed menu */
}

main.home{
  padding-top: 0;
}

main .title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Sequel100Black', sans-serif; /* Updated to use Sequel100Black */
    color: #333;
    text-align: center;
}

.tickets-page { 
  background-color: #000;
}

.event-image {  
    box-shadow:rgba(0, 0, 0, 0.3) 0px 0px 3px 0px;
}

.event-details {
    text-align: center;
    font-family: 'League Spartan', sans-serif;
}

.event-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.event-date {
    font-weight: 300;
    font-size: 1rem;
    margin: 0;
}

.event-soon {
    font-weight: 300;
    font-size: 1rem;
    margin: 0;
    padding: 50px 0;
    background-color: #f9f9f9;
    box-shadow:rgba(0, 0, 0, 0.1) 0px 0px 3px 0px;
}

.event-card .btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  background-color: #dcdcdd;
  color: #333;
  border: none;
  transition: background-color 0.3s ease;
  font-family: 'League Spartan', sans-serif; /* Changed font to League Spartan */
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0;
  box-shadow:rgba(0, 0, 0, 0.3) 0px 0px 3px 0px;
}

.event-card .hero-section .btn:hover {
  background-color: #fff;
  color: #333;
}

dl { 
  margin: 0 !important; /* Reset default margin */
}

.disclosure-title {
  font-size: 1.5rem;
  font-family: 'League Spartan', sans-serif; /* Changed font to League Spartan */
  font-weight: 700;
  text-align: center;
  color: #333;
  text-transform: uppercase; /* Added uppercase transformation */
  margin-top: 2rem;
}

.disclosure-sub {
  font-size: 0.8rem;
  font-family: 'League Spartan', sans-serif; /* Changed font to League Spartan */
  font-weight: 300;
  text-align: center;
  color: #777;
  margin-bottom: 1rem;
  font-style: italic; /* Added italic style */
}

.disclosure-container {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.disclosure-container-inner > * + * {
  border-top: 1px solid #d1d5db;
}

.disclosure-question {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  width: 100%;
  padding: 0.75rem;
  color: #111827;
  background: transparent;
  border: none;
  cursor: pointer;
}
.question-text {
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.chevron-icon {
  width: 1rem;
  height: 1rem;
  transition: all 0.3s ease-in-out;
}

.disclosure-answer {
  display: none;
  transition: all 0.3s ease-in-out;

}
.disclosure-answer.active {
  display: block;
  padding: 0.2rem 0.75rem 0.75rem;
  height: auto;
}

.answer-text, .answer-text a {
  font-size: 1rem;
  line-height: 1.75rem;
  color: #718096;
}

button:focus {
    outline: none !important; /* Remove default focus outline */
}

.icons{
  display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 20px;
  height: 15px;
  width: 15px;
}

.instagram-icon{
  background: url("../img/socials/instagram_black.png") no-repeat;
  transition: 0.4s;
  background-size: contain;
}

.instagram-icon-c{
  background: url("../img/socials/instagram_color.png") no-repeat;
  transition: 0.4s;
  background-size: contain;
}

.instagram-icon:hover{
  background: url("../img/socials/instagram_color.png") no-repeat;
  background-size: contain;
}

.facebook-icon{
  background: url("../img/socials/facebook_black.png") no-repeat;
  transition: 0.4s;
  background-size: contain;
}

.facebook-icon:hover{
  background: url("../img/socials/facebook_color.png") no-repeat;
  background-size: contain;
}

.youtube-icon{
  background: url("../img/socials/youtube_black.png") no-repeat;
  transition: 0.4s;
  background-size: contain;
}

.youtube-icon:hover{
  background: url("../img/socials/youtube_color.png") no-repeat;
  background-size: contain;
}