/* Color Palette */
:root {
  --smoky-black: #140f00;
  --bite-brown: #926e1b;
  --pullman-green: #3e3211;
  --medium-jungle-green: #1b3f25;
  --cosmic-latte: #fff9eb;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--cosmic-latte);
  color: var(--smoky-black);
  line-height: 1.6;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

p {
  font-family: "Open Sans", sans-serif;
}
/* Loading Animation Styles */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pullman-green), var(--bite-brown));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-content {
  text-align: center;
  position: relative;
  width: 80%;
  max-width: 500px;
}

.loading-logo {
  width: 120px;
  height: 120px;
  animation: pulse 2s infinite alternate, spin 8s linear infinite;
  margin-bottom: 20px;
}

.loading-title {
  color: var(--cosmic-latte);
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(255, 249, 235, 0.5);
  animation: glow 2s infinite alternate;
}

.loading-text {
  color: var(--cosmic-latte);
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.9;
  min-height: 1.5em;
}

.loading-bar-container {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loading-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cosmic-latte), #fff);
  border-radius: 10px;
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
}

.loading-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
      transparent, 
      rgba(255, 255, 255, 0.4), 
      transparent);
  animation: shimmer 1.5s infinite;
}

.musical-notes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.musical-note {
  position: absolute;
  color: var(--cosmic-latte);
  animation: float-note 5s linear infinite;
  opacity: 0.7;
}

.play-music-btn {
  background-color: var(--bite-brown);
  color: var(--cosmic-latte);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  margin-top: 20px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.play-music-btn:hover {
  background-color: var(--medium-jungle-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes glow {
  0% { text-shadow: 0 0 10px rgba(255, 249, 235, 0.5); }
  100% { text-shadow: 0 0 20px rgba(255, 249, 235, 0.8), 0 0 30px rgba(255, 249, 235, 0.6); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes float-note {
  0% {
      transform: translateY(100vh) rotate(0deg);
      opacity: 0;
  }
  10% {
      opacity: var(--opacity);
  }
  90% {
      opacity: var(--opacity);
  }
  100% {
      transform: translateY(-100px) rotate(360deg);
      opacity: 0;
  }
}

body.loaded {
  overflow: auto;
}

body:not(.loaded) {
  overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .loading-logo {
      width: 90px;
      height: 90px;
  }
  
  .loading-title {
      font-size: 2.5rem;
  }
  
  .loading-text {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .loading-logo {
      width: 70px;
      height: 70px;
  }
  
  .loading-title {
      font-size: 2rem;
  }
}
/* Navigation */
.navbar {
  background-color: var(--bite-brown);
  color: var(--cosmic-latte);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.navbar h2 {
  font-size: 2rem;
  margin: 0;
}

@media (max-width: 780px) {
  .navbar h2 {
    font-size: 1.5rem;
  }
}
.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 55px;
  margin-right: 10px;
  margin-left: 10px;
}

.navbar-links a {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-self: center;
  color: var(--cosmic-latte);
  text-decoration: none;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: var(--medium-jungle-green);
}

/* Home Page */
.home-hero {
  background-color: var(--pullman-green);
  color: var(--cosmic-latte);
  height: fit-content;
  text-align: center;
  padding: 30px 0px 50px 0px;
}

.home-hero h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .home-hero h1 {
    font-size: 2rem;
  }
  
}
.home-hero p {
  max-width: 800px;
  margin: 0 auto;
}
/* Slider Section */
.slider-container {
  width: 100%;
  max-width: 100%; 
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1); /* Changed from 0.8s to 0.5s for faster transition */
  height: 700px;
}

.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-out; /* Changed from 0.5s to 0.3s for faster effect */
}

.slide.active img {
  transform: scale(1.05);
}

.slider-controls {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.prev-btn, .next-btn {
  background-color: rgba(255, 255, 255, 0.7);
  color: #333;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .slider-controls {
    bottom: 5px;
  }
  .prev-btn, .next-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

.prev-btn:hover, .next-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

.dots-container {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* Animation for slide transitions */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

.slide.animate-in img {
  animation: fadeIn 0.5s forwards; /* Changed from 0.8s to 0.5s */
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .slider {
      height: 500px;
  }
}

@media (max-width: 768px) {
  .slider {
      height: 350px;
  }
}
/* About Page */
.about-section {
  display: flex;
  align-items: center;
  padding: 50px 20px;
  background-color: var(--cosmic-latte);
}

.about-text {
  flex: 1;
  padding: 0 20px;
}
.about-text h2{
  font-size: 2rem;
  padding-bottom: 10px;
}
.about-text p{
  font-size: 1.2rem;
}

@media (max-width: 768px) {

  .about-text h2{
    font-size: 1.8rem;
  }
  .about-text p{
    font-size: 1rem;
  }
}
.about-image {
  flex: 1;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Members Page */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr) ); 
  gap: 20px;
  padding: 50px 20px;
  background-color:#3E3211;
  color: var(--cosmic-latte);
}
@media (max-width: 460px) {
  .members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr) ); 
    gap: 20px;
    padding: 50px 20px;
    background-color:#3E3211;
    color: var(--cosmic-latte);
  }
  
}
@media (min-width: 876px) and (max-width: 1120px) {
  .members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 2fr) ); 
    gap: 20px;
    padding: 50px 20px;
    background-color:#3E3211;
    color: var(--cosmic-latte);
  }
  
}

.member-card {
  background-color: var(--bite-brown);
  border-radius:10px;
  overflow:hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: scale(1.05);
}

.member-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.member-info {
  padding: 10px 5px 15px 5px;
}

/* Concerts Page */
.concerts-section {
  padding: 50px 20px;
  background-color: var(--cosmic-latte);
}

.concerts-section h2{
  padding-left: 5px;
} 
.concert-card {
  border: 1px solid var(--medium-jungle-green);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.concert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: var(--medium-jungle-green);
  color: var(--cosmic-latte);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.concert-header:hover {
  background-color: #0f2c17;
  
  
}

.concert-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  background-color: var(--cosmic-latte);
  border: 2px solid var(--medium-jungle-green);
  border-top: none;
}

.concert-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.performers-category {
  margin-top: 20px;
  padding: 15px;
  background-color: var(--medium-jungle-green);
  color: var(--cosmic-latte);
  border-radius: 8px;
}

.performers-category h4 h5{
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.performers-category ul {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.performers-category li {
  margin-left: 10px;
  padding: 5px 10px;
  background-color: var(--medium-jungle-green);
  border-radius: 4px;
  text-align: start;
}

.concert-dropdown.active {
  border-radius: 0 0 8px 8px;
  max-height: 2000px; 
}

.dropdown-content {
  padding: 25px;
  background-color: rgba(146, 110, 27, 0.1); /* --bite-brown with opacity */
  border-radius: 0 0 8px 8px;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease;
  color: var(--cosmic-latte);
}

.buy-ticket-btn {
  background-color: var(--bite-brown);
  color: var(--cosmic-latte);
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  border-radius: 25px;
}
.buy-ticket-btn-inner {
  background: linear-gradient(135deg, var(--bite-brown), var(--medium-jungle-green));
  color: var(--cosmic-latte);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 25px;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.buy-ticket-btn-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--medium-jungle-green), var(--bite-brown));
}

.buy-ticket-btn-inner:active {
  transform: translateY(-1px);
}

/* Add animation for dropdown toggle */
.dropdown-toggle.active {
  transform: rotate(180deg);
  color: var(--cosmic-latte);
}

/* Style the info blocks inside dropdown */
.info-block {
  padding: 20px;
  background-color: rgba(255, 249, 235, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.info-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Update song list styling */
.song-list {
  list-style-type: none;
  padding: 0;
}

.song-list li {
  margin-bottom: 10px;
  padding: 8px 15px;
  background-color: var(--cosmic-latte);
  border-right: 4px solid var(--medium-jungle-green);
  border-left: 4px solid var(--medium-jungle-green);
  border-radius: 4px 4px;
  transition: all 0.3s ease;
  text-align: center;
}

.song-list li:hover {
  background-color:var(--medium-jungle-green);
  color: var(--cosmic-latte);
  transform: scale(1.05);
}

.map-container {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
}
.location-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: start;
}

.location-text {
  padding: 10px;
}

.map-container {
  width: 100%;
  min-height: 250px;
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: none;
}
.concert-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Contact Page */
.contact-section {
  background-color: var(--bite-brown);
  color: var(--cosmic-latte);
  padding: 0px 20px 50px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info {
  background-color: var(--pullman-green);
  padding: 30px;
  border-radius: 10px;
}
.contact-info h2{
  font-size: 2rem;
}
.contact-info p{
  padding-left: 10px;
  font-size: 1.2rem;
}

.contact-form {
  background-color: var(--medium-jungle-green);
  padding: 30px;
  border-radius: 10px;
}
.contact-form h2{
  font-size: 1.9rem;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  background-color: var(--cosmic-latte);
  color: var(--smoky-black);
}

.contact-form button {
  background-color: var(--bite-brown);
  color: var(--cosmic-latte);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;

}

.contact-form button:hover {
  background-color: var(--medium-jungle-green);
}

.contact-info h2,
.contact-form h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  text-align: center;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-links img {
  width: 30px;
  height: 30px;
}

.social-icon {
  color: var(--cosmic-latte);
  text-decoration: none;
  font-size: 24px;
  transition: color 0.3s ease;
  text-align: center;
}

.facebook:hover, #f-facebook:hover {
  color:#4c5993;
}
.instagram:hover , #f-instagram:hover {
  color: #d32b7e;
}
.tiktok:hover , #f-tiktok:hover {
  color: black;
}

/* Footer */
.footer {
  background-color: var(--bite-brown);
  color: var(--cosmic-latte);
  padding: 20px 0;
  padding-bottom: 30px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content p {
  margin-bottom: 10px;
}

.social-links-footer {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.social-links-footer a {
  color: var(--cosmic-latte);
  text-decoration: none;
}
/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--bite-brown), var(--medium-jungle-green));
  color: var(--bite-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--medium-jungle-green);
  color: var(--cosmic-latte);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}

.toast.active {
  opacity: 1;
  visibility: visible;
}
/* Responsive Contact Section */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
/* Open Sans */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Playfair Display */
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Sono";
  src: url("../fonts/Sono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Sono";
  src: url("../fonts/Sono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .about-content {
      flex-direction: column;
  }
  
  .contact-container {
      flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .about-section {
    flex-direction: column;
  }

  .navbar-links {
    margin-top: 15px;
  }
  .contactus {
    padding: 50px 20px;
  }
  .concert-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .hamburger {
      display: block;
  }
  
  .nav-links {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background-color: var(--medium-jungle-green);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: left 0.3s ease;
      z-index: 10000;
  }
  
  .nav-links.active {
      left: 0;
      z-index: 10000;
  }
  
  .nav-links li {
      margin: 1.5rem 0;
  }
  
  .hero-content h1 {
      font-size: 2.5rem;
  }
  
  .projects-grid {
      grid-template-columns: 1fr;
  }


} 
@media (max-width: 450px) {
  /* Base fixes */
  html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  
  /* Fix any potential overflowing elements */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Fix common container issues */
  .container, 
  .home-hero, 
  .about-section, 
  .concerts-section, 
  .contact-section,
  .footer {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    overflow-x: hidden;
  }




  /* Control content width */
  p, h4, h5, h6 {
    max-width: 100%;
    word-wrap: break-word;
    font-size: 1rem;
  }
  
  /* Fix the layout of specific sections */
  .about-image img {
    width: 100%;
    height: auto;
  }
  
  /* Ensure the white background area doesn't overflow */
  #main-content {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  .contact-section {
    padding: 30px 8px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .contact-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    gap: 15px;
  }
  
  .contact-info, 
  .contact-form {
    padding: 15px 15px;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 8px;
    margin-bottom: 10px;
  }
  
  .contact-form button {
    width: 100%;
    padding: 8px 15px;
  }
  
  .social-links {
    gap: 10px;
  }

  
  /* Ensure contact info doesn't overflow */
  .contact-info h2,
  .contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
 .social-links a {
   font-size: 1.2rem;
 }
  .contact-info, 
.contact-form {
  padding: 18px 15px;
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
}
.about-content {
  flex-direction: column;
}

.contact-container {
  flex-direction: column;
}
.info-block {
padding: 10px;
}
.dropdown-content {
padding: 15px;
background-color: rgba(146, 110, 27, 0.1); /* --bite-brown with opacity */
border-radius: 0 0 8px 8px;
overflow: scroll;
}
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 2px 0;
    transition: 0.4s;
}

@media screen and (max-width: 500px) {
    .hamburger {
        display: flex;
    }

    .navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .navbar-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 73px;
        left: 0;
        background-color: var(--pullman-green);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-100%);
        transition-duration: 0.3s;
        opacity: 1;

        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .navbar-links.active {
        display: flex;
        transform: translateY(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 1;
    }

    .navbar-links a {
        margin: 10px 0;
        padding: 10px 20px;
        width: 100%;
        text-align: center;

    }

    .navbar-links a:hover {
        background-color: var(--medium-jungle-green);
        color: var(--cosmic-latte);
    }

    /* Hamburger animation classes */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .concert-header{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr) ); 
      gap: 20px;
      text-align: center;
    }
    .contact-info p{
      font-size: 1rem;
    }
}


@media screen and (max-width: 720px){
.concert-header{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr) );
  gap: 20px;
  text-align: center;
}
}
/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--bite-brown), var(--medium-jungle-green));
    position: relative;
    overflow: hidden;
}

/* Enhanced pattern overlay */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
        linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%);
    background-size: 30px 30px;
    opacity: 0.15;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.stat-card {
    text-align: center;
    padding: 50px 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--cosmic-latte);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -2px;
    line-height: 1;
    opacity: 0;
    animation: numberFadeIn 1s ease-out forwards;
}

@keyframes numberFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--cosmic-latte);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 20px;
}

.stat-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cosmic-latte), transparent);
    opacity: 0.8;
    animation: lineWidth 2s ease-in-out infinite;
}

@keyframes lineWidth {
    0%, 100% { width: 60px; opacity: 0.6; }
    50% { width: 100px; opacity: 0.9; }
}

.stat-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 280px;
    margin: 0 auto;
    opacity: 0.9;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.stat-card:hover p {
    transform: translateY(-5px);
    opacity: 1;
}

/* Enhanced responsive design */
@media screen and (max-width: 1200px) {
    .stats-section {
        padding: 80px 40px;
        gap: 30px;
    }
    
    .stat-card h2 {
        font-size: 4.5rem;
    }
}

@media screen and (max-width: 992px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 60px 30px;
    }
    
    .stat-card {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .stats-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 20px;
    }

    .stat-card {
        padding: 35px 25px;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .stat-card h2 {
        font-size: 4rem;
    }

    .stat-card h3 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .stat-card p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .stats-section {
        padding: 40px 15px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-card h2 {
        font-size: 3.5rem;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .stat-card p {
        font-size: 1rem;
    }
}

/* Sponsors Section */
.sponsors-section {
    background-color: var(--bite-brown);
    padding: 50px 20px 30px 20px;
}

.sponsors-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.sponsors-info {
    background-color: var(--pullman-green);
    padding: 30px;
    border-radius: 10px;
    color: var(--cosmic-latte);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sponsors-info h2 {
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    text-align: center;
}

.sponsors-info p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.sponsor-btn {
    background-color: var(--bite-brown);
    color: var(--cosmic-latte);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
    align-self: center;
}

.sponsor-btn:hover {
    background-color: var(--medium-jungle-green);
    transform: translateY(-2px);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
    background-color: var(--medium-jungle-green);
    border-radius: 10px;
}

.sponsor-item {
    background-color: var(--cosmic-latte);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.sponsor-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sponsor-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive Design for Sponsors Section */
@media screen and (max-width: 992px) {
    .sponsors-container {
        grid-template-columns: 1fr;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 450px) {
    .sponsors-section {
        padding: 30px 8px;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
    }
    
    .sponsors-info {
        padding: 20px 15px;
    }
}

/* AOS animation enhancements */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* Optional: Add a base transition to all elements for smoother overall feel */
* {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Add this to your existing animations section */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}