/* ====================== Main Styles ====================== */
body {
    font-family: 'Inter', system-ui, sans-serif;
}

.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1504302938372-7e6f0e1e0b0b?ixlib=rb-4.0.3&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

/* ====================== Header & Navigation ====================== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

/* Improved Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 320px;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    border-radius: 8px;
    padding: 12px 0;
    margin-top: 8px;
    z-index: 50;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

/* Extra safe hover area */
.nav-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    top: 85%;
    width: 100%;
    height: 30px;
}

/* Links */
.nav-link {
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #CC553E;
}

/* Buttons */
.btn-primary {
    background-color: #CC553E;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b54734;
    transform: translateY(-2px);
}
@keyframes zoomBg {
  0% { background-size: 100%; }
  100% { background-size: 110%; }
}

/* Hide dropdown by default */
.dropdown-menu {
  display: none;
}

/* Show on hover (desktop only) */
@media (min-width: 768px) {
  .nav-dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    background: white;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 9999;
  }
}

/* Hide by default */
.dropdown-menu {
  display: none;
  position: relative;
  z-index: 10000;
  background: white;
}

/* Desktop hover */
@media (min-width: 768px) {
  .nav-dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    background: white;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
}

/* Ensure text is visible */
.dropdown-menu a {
  color: #222A5E;
}


