/* ================= BASIC THEME ================= */
:root {
  --purple: #6a1b9a;
  --purple-dark: #4a0072;
  --gold: #f8c146;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Navbar */
.nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--purple) !important;
}

.btn-purple {
  background-color: var(--purple);
  border: none;
  transition: 0.3s ease;
}

.btn-purple:hover {
  background-color: var(--purple-dark);
}

/* Carousel */
#heroCarousel .carousel-item {
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

#heroCarousel .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(106, 27, 154, 0.6), rgba(74, 0, 114, 0.6));
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* Animation Enhancements */
.animate__animated {
  animation-duration: 1.5s;
}

@media (max-width: 768px) {
  #heroCarousel h1 {
    font-size: 1.8rem;
  }
  #heroCarousel p {
    font-size: 1rem;
  }
}



/* FOOTER */
.footer p, .footer a, .footer h5 {
  color: #fff;
}

.footer a:hover {
  color: var(--gold);
  text-decoration: none;
}

.text-purple {
  color: var(--purple);
}

/* Form focus style */
.footer input:focus, .footer textarea:focus {
  border: 2px solid var(--gold);
  box-shadow: 0 0 5px var(--gold);
}


/* FOOTER STYLES */
.footer h5 {
  color: var(--gold);
}

.footer a {
  color: #fff;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--gold);
}

.gallery-thumb {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

/* Modal image carousel */
#galleryModal .carousel-item img {
  height: 75vh;
  object-fit: cover;
}
