@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0d1f3c;
  --navy-mid: #172f6b;
  --blue: #1e88e5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #2a2724;
}

.font-display {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* Dropdown transitions */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  width: 260px;
  padding: 8px;
  z-index: 100;
}
/* Invisible bridge fills the 8px gap between button and dropdown so
   .dropdown-group:hover stays active as the mouse moves toward the menu */
.dropdown-group::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown-group:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}
.dropdown-menu a,
.dropdown-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  font-size: 0.875rem;
  border-radius: 6px;
  color: #2a2724;
  text-decoration: none;
  transition: background 0.15s;
  border: none;
  background: none;
  cursor: pointer;
}
.dropdown-menu a:hover,
.dropdown-menu button:hover {
  background: #f9f9f7;
}
.dropdown-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e88e5;
  padding: 4px 12px 2px;
}
.dropdown-divider {
  border: none;
  border-top: 1px solid #f0ede8;
  margin: 6px 0;
}


/* Mobile menu */
#mobile-menu {
  display: none;
}
#mobile-menu.open {
  display: block;
}

/* Gallery filter */
.gallery-category { display: block; }
.gallery-category.hidden { display: none; }

/* FAQ accordion */
.faq-answer {
  display: none;
  padding-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5c5852;
}
.faq-answer.open {
  display: block;
}
.faq-chevron {
  transition: transform 0.2s;
}
.faq-chevron.rotate {
  transform: rotate(180deg);
}

/* Hover utilities */
.hover-lift {
  transition: transform 0.2s, box-shadow 0.2s;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Form focus */
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #1e88e5 !important;
}
