:root {
  --nav-height: 0px; /* default fallback */
  --logo-width: 0px;
}

 


* {
  padding: 0;
  margin: 0;
  border: none;
}


.mobile {
    display: none !important;
}


html {
  scroll-padding-top: var(--nav-height); /* adjust to match your fixed header height */
}



body {
  font-family: 'Segoe UI', sans-serif;
  background: black;
  color: #fff;
}

header {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: transparent;
  display: block;
  align-items: center;
  z-index: -100;
}

#hero {
  display: flex;
  height: 100vh;
  align-items: center; /* vertical centering */
  justify-content: center; /* horizontal centering (optional) */
  text-align: center;
  padding: 0rem 0rem;
  background: linear-gradient(to right,
    #0000ff 0%,       /* Blue start */
    #0000ff 5%,      /* Blue end */
    #000000 40%,      /* Black center */
    #000000 60%,      /* Black center */
    #ff0000 95%,      /* Red start */
    #ff0000 100%      /* Red end */
  );
}


#logo {
    position: fixed;
    display: block;
    width: 20%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


nav {
  width: 100vw;
  background: linear-gradient(to right,
    #0000ff 0%,       /* Blue start */
    #0000ff 5%,      /* Blue end */
    #000000 40%,      /* Black center */
    #000000 60%,      /* Black center */
    #ff0000 95%,      /* Red start */
    #ff0000 100%      /* Red end */
  );
  color: white;
  position: fixed;
  display: flex;
  justify-content: space-between;
  justify-content: center; /* horizontal centering (optional) */
  z-index: 1000;
}

nav ul {
  display: flex;
  flex: 1;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center; /* horizontal centering (optional) */
}

nav li {
    display: flex;
  flex: 1;
  text-align: center;
  justify-content: center; /* horizontal centering (optional) */
}

nav a {
    display: flex;
  display: block;
  padding: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
  color: white;
  justify-content: center; /* horizontal centering (optional) */
}


nav a:hover {
  color: white;
}



.btn {
  display: inline-block;
  margin-top: 0rem;
  padding: 0.75rem 1.5rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}



section {
  position: relative;
  height: calc( calc(100vh - var(--nav-height)) - 1em);
  top: 100vh;
  
  background-color: rgba(0,0,0,0);
}

section:not(#contact) {
  padding: 6.5vh 1.5vw 1vh 1.5vw; /* top, right, bottom, left */
}

section:last-of-type {
  height: calc( calc(100vh - var(--nav-height)) - 1em);
  padding-top: 6.5vh;
}

iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
}

.testimonial {
  background: #222;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid #ff0057;
}

.event-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 1rem;
  justify-content: center; /* optional: centers tiles horizontally */
}

.event-tile {
  display: inline-block;
  background-color: #1e1e1e;
  border: 1px solid #444;
  color: #fff;
  border-radius: .5rem;
  padding: 1rem;
  box-shadow: 0 .33rem 1rem rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  max-width: 100%; /* prevents overflow on small screens */
}

.event-tile:hover {
  transform: translateY(-4px);
}

.event-type {
  font-size: 1rem;
  font-weight: 600;
  color: #00ffcc;
  margin-bottom: 0.5rem;
}

.event-location {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 0.25rem;
}

.event-datetime {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 0.25rem;
}

.event-admission {
  font-size: 0.9rem;
  color: #fff;
  margin-top: 0.5rem;
  font-weight: 500;
}

.event-status {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  background-color: #ff3366;
  color: white;
  font-size: 0.8rem;
  border-radius: 999px;
}
  
  
  
  .music-tracks {
  position: relative;
  display: inline-block;
  padding: 2rem;
  
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
/*
.music-tracks h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FFEB3B; /* yellow accent *//*
  text-transform: uppercase;
  letter-spacing: 1px;
}
*/

.track-card {
  position: relative;
  display:inline-block;
  background: #222;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 5vh;
  margin: .5vw .5vw;
  box-shadow: 0 0 10px rgba(255, 235, 59, 0.2);
  transition: transform 0.3s ease;
  min-width: 24.375vw;
}

.track-card:hover {
  transform: scale(1.03);
}

.track-info {
  margin-bottom: 0.5rem;
}

.track-title {
  font-size: 1.2rem;
  margin: 0;
  color: #FF9800; /* orange accent */
}

.track-format {
  font-size: 0.8rem;
  color: #aaa;
}


audio {
  
  border-radius: 8px;
  background-color: transparent;
  filter: drop-shadow(0 0 2px #FFEB3B); /* stylish glow */
}
  
  
  


#calendarWidget {
    position: relative;
    height: 60vh;
}


h2 {
  text-align: center;
  font-size: 1.5rem;
  background-color: black;
  border-radius: 1em;
  margin-bottom: 2rem;
  color: white;
}



input, textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
}

button {
  padding: 0.75rem;
  background: #ff0057;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100vw;
  text-align: center;
  padding: .2rem;
  background: #000;
  z-index: 1000;
}

.hide-scrollbar {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}