/* Variables */
html {
  scroll-behavior: smooth;
}

/* Global Styles */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  scroll-padding-top: 5vh;
}

a {
  transition: color 0.3s ease;
}
img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.bg-primary {
  background-color: hsl(0, 0%, 9%);
}

.bg-secondary {
  background-color: hsl(128, 70%, 21%);
}

.bg-accent {
  background-color: hsl(36, 66%, 58%);
}

.text-gold {
  color: hsl(36, 66%, 58%) !important;
}

.bg-gradient-to-br {
  background-image: linear-gradient(135deg, hsl(0, 0%, 19%) 0%, hsl(0, 0%, 9%) 25%, hsl(128, 70%, 21%) 75%, hsl(128, 70%, 11%) 100%);
}

/* Navbar */
.navbar {
  background-color: #fff;
}
.navbar .navbar-brand .logo {
  width: clamp(100px, 150px, 30%);
}
.navbar .nav-links {
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .navbar .nav-links {
    width: 100%;
    position: absolute;
    top: -1000%;
    left: 0;
    z-index: 100;
  }
}
.navbar .nav-links.active {
  top: 100%;
  height: 90vh;
  width: 100%;
  min-height: 50vh;
  background: rgba(16, 53, 21, 0.35);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

#hero {
  background-color: #fff;
}
#hero .bg-gradient-to-br {
  background: radial-gradient(circle at center, hsl(128, 70%, 21%) 0%, transparent 70%);
}
#hero h1 {
  color: hsl(0, 0%, 9%);
}
#hero h2 {
  color: hsl(128, 70%, 21%);
}
#hero p {
  color: hsl(0, 0%, 9%);
}
#hero img {
  border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
#hero .rotate-\[8deg\] {
  transform: rotate(8deg);
}
#hero .-inset-3 {
  top: -0.75rem;
  bottom: -0.75rem;
  left: -0.75rem;
  right: -0.75rem;
}
#hero .rounded-2xl {
  border-radius: 1rem;
}
#hero .shadow-xl {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
#hero .text-primary-clr {
  color: hsl(0, 0%, 9%);
}
#hero .text-secondary-clr {
  color: hsl(128, 70%, 21%);
}
#hero .bg-accent-clr {
  background-color: hsl(36, 66%, 58%);
}
.bg-accent-clr {
  background-color: hsl(36, 66%, 58%);
}
#hero .from-secondary-clr\/30 {
  background: radial-gradient(circle at center, rgba(16.065, 91.035, 26.061, 0.3) 0%, transparent 100%);
}
#hero .to-secondary-clr\/10 {
  background: radial-gradient(circle at center, rgba(16.065, 91.035, 26.061, 0.1) 0%, transparent 100%);
}

/* The Vision Section Styles */
/* The Vision Section */
#vision {
  background: hsl(128, 70%, 21%) url(assets/images/gallery/SPB_Museum-photos-9.jpg) no-repeat center/cover fixed;
  background-blend-mode: overlay;
}
#vision .vision-title {
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
#vision .vision-paragraph {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
}
#vision .highlight {
  font-weight: 600;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
  /* Initial state for animation */
  opacity: 0.8;
}
#vision .highlight::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: hsl(36, 66%, 58%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  filter: blur(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 3px;
  pointer-events: none;
}

/* Footer */
footer {
  background-color: hsl(36, 66%, 58%);
  padding: 2rem 0;
}
footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  footer .container {
    grid-template-columns: repeat(4, 1fr);
  }
}
footer .container.footer-bottom {
  display: flex;
}
footer .container.footer-bottom p {
  text-align: center;
}
footer h5 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
footer a {
  transition: color 0.3s ease;
}
footer a:hover {
  color: #fff;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 0.25rem;
}
footer .text-center {
  margin-top: 1rem;
  color: hsl(128, 70%, 41%);
}

/*# sourceMappingURL=style.css.map */
