:root {
  --primary-color: #283792;
  /* Soft Blue */
  --primary-hover: #4A69BB;
  /* Deeper Blue */
  --secondary-color: #8dc442;
  /* Muted Pastel Blue */
  --background-color: #EAF2F8;
  /* Lightest Blue/Gray */
  --card-background: #FDFDFD;
  /* Almost White */
  --success-color: #6ABF69;
  /* Calm Green */
  --success-hover: #5A9F58;
  /* Deeper Green */
  --warning-color: #F4D03F;
  /* Soft Yellow */
  --warning-hover: #E6B800;
  /* Muted Golden */
  --error-color: #E57373;
  /* Gentle Red */
  --error-hover: #C74C4C;
  /* Deeper Red */
  /* --text-primary: #37474F; */
  /* Soft Dark Gray */
  --text-primary: #333;
  /* Muted Blue-Gray */
  --text-white: #ffffff;
  /* Muted Blue-Gray */
}


.classes-box a {
  margin-top: 800px !important;
  ;
  /* background-color: var(--secondary-color); */
  /* padding-right: 60px;
  padding-left: 80px; */
  /* padding-top: 35px; */
  /* padding-bottom: 35px; */
  /* height: 300px; */
}

.classes-box {
  background-color: var(--primary-color);
  padding-right: 60px;
  padding-left: 80px;
  padding-top: 80px;
  padding-bottom: 60px;
  margin-top: 0px;
  /* height: 300px; */
}

.classes-box h4 {
  color: var(--text-white);
  margin: 0 !important;
  padding: 0 !important;
}


.classes-box span {
  color: var(--text-white);
  /* Ensure it applies to both */
}



#mobile-nav {
  background-color: var(--primary-color);
  color: var(--background-color) !important;
}

#footer {
  background-color: var(--primary-color);
  color: var(--background-color);
}

html {
  scroll-behavior: smooth;
}


.circle {
  background-color: var(--primary-color) !important;
}

.event-column-box h2 {
  padding-bottom: 8px;

}

.event-column-box {
  /* margin-top: 50px; */
  padding-top: 80px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 60px;
  height: 800px;
  /* background-color: #f7f7f7; */

  /* margin-right: 30px; */
  /* width: 15px; */

}

.event-column-box .card h3 {
  color: var(--primary-color) !important;
  padding-top: 30px !important;
  font-size: 32px !important;
  text-transform: none !important;

  font-family: 'Open Sans', sans-serif !important;
  /* font-weight: 400 !important; */


}

.event-column-box .card {
  /* padding-top: 20px;
  padding-bottom: 20px; */

  /* box-shadow: none !important; */
  /* box-shadow: 0 2px 4px 0 rgba(63, 63, 63, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.022) !important; */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05) !important;
  /* background-color: var(--primary-color); */
  /* margin-right: 30px; */
  /* width: 15px; */
}


.event-list {
  /* left: 10%; */
  width: 100%;
  border: 0px !important;
  opacity: 0;
}

.event-list .collection {
  /* left: 10%; */
  width: 100%;
  border: 0px !important;
  padding-top: 10px !important;

}

.event-list ul li {
  text-align: left;
  /* background-color: rgba(2, 2, 2, 0.7) !important; */
  /* height: 20px !important; */
  /* border-bottom: 1px !important; */
  border-bottom: 0.3px solid rgba(0, 0, 0, 0.087) !important;

}



.top-text-section-box,
.top-text-section-text,
.top-text-section-image,
.top-text-section-button {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Unique Starting Positions */
.top-text-section-box {
  transform: scale(0.5);
  /* Boxes start small */
}

.top-text-section-text {
  transform: translateY(30px);
  /* Text slides up */
}

.top-text-section-image {
  transform: translateX(-50px);
  /* Images slide in from left */
}

.top-text-section-button {
  transform: scale(0.3);
  /* Button starts tiny */
}

/* When Visible */
.visible {
  opacity: 1;
  transform: scale(1) translateX(0) translateY(0);
}


.animate__animated.animate__fadeInDown {
  --animate-duration: 2s;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  /* Full width */
  height: 100vh !important;
  /* Full height */
  background: rgba(0, 0, 0, 0.95);
  /* Darker background */
  justify-content: center;
  align-items: center;
  z-index: 999999 !important;
  /* Make sure it's above everything */
  flex-direction: column;

}



.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  /* Remove background */
  border: none;
  padding: 5px;
  font-size: 40px;
  color: white !important;
  /* Change icon color */
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

.lightbox-btn i {
  font-size: 50px;
  /* Make icon bigger */
}

.lightbox-btn:hover {
  color: rgba(255, 255, 255, 0.8) !important;
  /* Lighter icon on hover */
}

.lightbox-btn.prev {
  left: 15px;
}

.lightbox-btn.next {
  right: 15px;
}



.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 equal columns */
  grid-auto-flow: dense;
  /* Ensures tighter packing */
  gap: 5px;
  /* Reduce spacing */
}

.grid-item {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  pointer-events: auto !important;
  /* Ensures image receives clicks */
  z-index: 0 !important;
  /* Ensures image is on top */
  position: relative !important;
  /* Ensures it’s clickable */
}

.grid-item.large {
  grid-column: span 2;
  /* Larger images span 2 columns */
  grid-row: span 2;
  /* Larger images take up more vertical space */
}

/* .buttonCenter {
  margin-top: 100px;
  background-color: white;
  color: black;
  border: 2px solid white;
  border-radius: 30px;
  padding: 10px 50px;
  font-size: 12px;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  line-height: 15px;
  font-weight: 900;
} */

.book-us-box a {
  margin-top: 300px;
  ;
  /* background-color: var(--secondary-color); */
  /* padding-right: 60px;
  padding-left: 80px; */
  /* padding-top: 35px; */
  /* padding-bottom: 35px; */
  /* height: 300px; */
}

.book-us-box {
  background-color: var(--secondary-color);
  padding-right: 60px;
  padding-left: 80px;
  padding-top: 40px;
  padding-bottom: 24px;
  /* height: 300px; */
}

.book-us-box h4 {
  color: var(--text-white);
  margin: 0 !important;
  padding: 0 !important;
}


.book-us-box span {
  color: var(--text-white);
  /* Ensure it applies to both */
}


.parallax-image-1 {
  object-fit: cover;
  /* Ensures full coverage */
  object-position: bottom center;
  /* Adjust positioning (top, bottom, left, right) */
  width: 100%;
  height: 190%;
  /* Prevent cutoff at certain scroll points */
}

.parallax-image-2 {
  object-fit: cover;
  /* Ensures full coverage */
  object-position: left center;
  /* Adjust positioning (top, bottom, left, right) */
  width: 100%;
  height: 190%;
  /* Prevent cutoff at certain scroll points */
}


.music-list {
  list-style: none;
  /* Removes default bullet points */
  /* padding: 0; */
  margin: 0;
}

.music-list li {
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.music-list i {
  color: #004aad;
  /* Adjust to match your theme */
  margin-right: 10px;
  font-size: 16px;
}

.half-column-box h2 {
  padding-bottom: 8px;

}

.half-column-box {
  /* margin-top: 50px; */
  padding-top: 80px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 60px;
  height: 500px;
  background-color: #f7f7f7;
  /* margin-right: 30px; */
  /* width: 15px; */
}

.half-column-box-text {
  /* margin-top: 50px; */
  font-size: 14px;
  color: var(--text-primary);
  /* margin-right: 30px; */
  /* width: 15px; */
}


.column-box {
  /* margin-top: 50px; */
  padding-top: 80px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 60px;
  height: 350px;
  /* margin-right: 30px; */
  /* width: 15px; */
}

.column-box-text {
  /* margin-top: 50px; */
  font-size: 14px;
  color: var(--text-primary);
  /* margin-right: 30px; */
  /* width: 15px; */
}

.header-hr {
  width: 40%;
  background-color: var(--hr-line);
  opacity: 0.3;
}

.header-slogan {
  font-size: 16px !important;
  color: #ffffff !important;
}

.custom-icon-light {
  font-size: 35px;
  color: var(--background-color);
}

.custom-icon-gray {
  font-size: 35px;
  color: #666666;
  vertical-align: middle;
  line-height: 1;
}


/* Caption text */
.caption {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}


.buttonCenter {
  margin-top: 150px;
  background-color: white;
  color: black;
  border: 2px solid white;
  border-radius: 30px;
  padding: 12px 60px;
  font-size: 12px;
  /* Ensure readable text */
  text-transform: uppercase;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  line-height: 15px;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/*  Add hover effect */
.buttonCenter:hover {
  background-color: white;
  color: black;
  /* margin: 50px; */

}

.buttonMenu {
  background-color: transparent;
  color: white;
  /* Ensure text is visible */
  border: 2px solid white;
  /* Reduce thickness */
  border-radius: 30px;
  /* Slightly rounded, not too much */
  padding: 10px 25px;
  /* Reduce padding for a normal shape */
  /* font-size: 16px; */
  /* Ensure readable text */
  text-transform: uppercase;
  /* Match other menu buttons */
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  line-height: 15px;
  margin: 20px;

}




/*  Add hover effect */
.buttonMenu:hover {
  background-color: white;
  color: black !important;
  /* margin: 50px; */

}



/* Remove gap between Materialize Grid */
.row {
  margin-bottom: 0 !important;
}

.col {
  padding: 0 !important;
}

h4 {
  font-size: 18px;
  color: var(--text-primary);
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
}


h2 {
  font-size: 40px;
  color: var(--text-primary);
  font-weight: 700;

  font-family: 'Work Sans', sans-serif;
  /* font-weight: bold; */
}



/*  Work Sans for Headings */
h1,

h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
  /* Extra bold for impact */
  text-transform: uppercase;
  /* Matches the Sweet Pan Entertainment style */
}

/*  Open Sans for Body Text */
body,
p,
a,
span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;

  /* Regular weight for easy reading */
  color: var(--text-primary);
  /* Adjust as needed */
}

p {
  font-size: 1.1rem;
  /* Slightly larger for better reading */
  line-height: 1.6;
  /* More spacing for clarity */
}



/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}


/* Fullscreen Header */
.main-header {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Dark Overlay */
.primary-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.765);
  z-index: 1;
}

/* Slideshow Fullscreen */
.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.mySlides {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text on Top of Slideshow */
.showcase {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.showcase h1 {
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.showcase p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Scroll Icon */
.scroll-icon {
  position: absolute;
  /* Keeps it inside the image container */
  left: 50%;
  transform: translateX(-50%);
  bottom: 4px;
  /* Moves it slightly down between the sections */
  z-index: 10;
  /* Ensures it's above the image and not covered by the next div */

  width: 50px;
  height: 50px;
  background-color: var(--background-color);

  border-radius: 50%;
  border: 1px solid white;
  outline: 1px solid white;
  /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.8); */

  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
  cursor: pointer;
}


.navbar-fixed {
  /* height: 500px; */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000 !important;
}



/* Navbar Transparent */
nav.transparent {
  background: transparent !important;
  position: absolute;
  z-index: 3;
  width: 100%;
  box-shadow: none !important;
  padding-right: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .showcase h1 {
    font-size: 2rem;
  }

  .showcase p {
    font-size: 1rem;
  }
}




.navbar-fixed {
  /* height: 500px; */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/*  Make Navbar Background Visible */
nav {
  background: transparent !important;
  /* Transparent initially */
  /* Adjust transparency */
  transition: background 0.3s ease-in-out;
  height: 64px;
  /* Fixed height for consistency */
  line-height: 64px;
  /* Aligns items properly */
}

nav.scrolled {
  background: var(--primary-color) !important;
  /* Visible background */
}



/*  Properly Align Brand Logo */
.brand-logo {
  font-size: 1.8rem;
  padding-left: 20px;
  line-height: 64px;
  /* Ensures it is vertically aligned */
  display: flex;
  align-items: center;
  height: 64px;

}

.brand-logo img {
  padding-left: 20px !important;
  max-width: 120px;
  transition: max-width 0.3s ease-in-out;
}

nav.scrolled .brand-logo img {
  max-width: 130px;
}

/*  Fix Navbar Items */
nav ul {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 10px;
  /*  Increases spacing between menu items */
}

nav ul li a {
  font-weight: bold;
  /*  Makes text bold */
  text-transform: uppercase;
  color: white !important;
  font-size: 0.8rem;
  padding: 0 15px;
  /* Ensures even spacing */
  line-height: 64px;
  /* Aligns text in the middle */
}

/*  Ensure sidenav appears in front */
.side-nav {
  z-index: 1005 !important;
  /* Higher than navbar */
  position: fixed !important;
  /* Ensures it stays on top */
}

/*  Ensure sidenav appears in front */
.side-nav li a {
  color: var(--background-color);
  /* Ensures it stays on top */
}

/*  Ensure sidenav overlay is visible */
.sidenav-overlay {
  z-index: 1000 !important;
  /* background: rgba(0, 0, 0, 0.4) !important; */
  background: #ffffff !important;
  /* Change to white */
  color: #000000 !important;
  /* Change text color to black */
  /* Adjust overlay darkness */
}


/*  Fix Mobile Sidenav */
/* .sidenav {
  display: none;
  /* Hide by default */
/* } */


/* Ensure sidenav is hidden on desktop */
/*  Hide Mobile Menu Button on Desktop */
/* @media (min-width: 993px) {
  .sidenav-trigger {
    display: none !important;
  }
} */


/* Fix sidenav appearing unexpectedly */

@media (max-width: 600px) {

  .lightbox-btn {
    padding: 8px 12px;
    font-size: 20px;
  }


  .book-us-box a {
    margin-top: 300px;
    ;
    /* background-color: var(--secondary-color); */
    /* padding-right: 60px;
  padding-left: 80px; */
    /* padding-top: 35px; */
    /* padding-bottom: 35px; */
    /* height: 300px; */
  }

  .half-column-box {
    /* margin-top: 50px; */
    padding-top: 80px;
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 60px;
    height: 500px;
    background-color: #f7f7f7;
    /* margin-right: 30px; */
    /* width: 15px; */
  }


  .event-column-box {
    /* margin-top: 50px; */
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 60px;
    height: 1000px;
    /* background-color: #f7f7f7; */

    /* margin-right: 30px; */
    /* width: 15px; */

  }

  /* .sidenav {
    display: block !important;
    transform: translateX(-105%);
    transition: transform 0.3s ease-in-out;
  } */

  /* .sidenav.open {
    transform: translateX(0%);
  } */
}