/* Base Icon Settings */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* Offset anchored sections for the fixed navbar */
html {
  scroll-padding-top: 96px;
}

/* Button Gradients */
.signature-gradient {
  background: linear-gradient(135deg, #ffd709 0%, #efc900 100%);
}

/* Navbar Scrolled State */
.nav-scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers for sequential animations */
.delay-100 {
  transition-delay: 100ms;
}
.delay-200 {
  transition-delay: 200ms;
}
.delay-300 {
  transition-delay: 300ms;
}

/* Image Hover Zoom Effect */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.8s ease, filter 0.8s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* FAQ Accordion Rotation */
.faq-item.active .material-symbols-outlined {
  transform: rotate(45deg); /* Turns the '+' into an 'x' */
}

.faq-item.active .faq-content {
  grid-template-rows: 1fr !important;
}
