/* La Lumiere – Main Stylesheet */

body {
    font-family: "Inter", sans-serif;
    color: #31231C;
}

/* Hero map background */
.hero-map-bg {
    background-position: top center;
    background-size: 1440px auto;
    background-repeat: no-repeat;
}

/* Gradient overlay */
.custom-gradient-overlay {
    background: linear-gradient(180deg, rgba(248,244,241,0) 0%, #F8F4F1 100%);
}

/* Navigation dropdown */
.nav-dropdown {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
}

/* Service card hover states */
.service-card:hover .service-btn {
    background-color: #000;
    color: #fff;
}

/* Destination card image zoom */
.destination-card .card-img {
    transition: transform 0.5s ease;
}
.destination-card:hover .card-img {
    transform: scale(1.05);
}

/* Process grid dividers */
.process-card {
    position: relative;
}
.process-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(200,169,141,0.2);
}

/* Form focus states */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #C5A371 !important;
    box-shadow: 0 0 0 1px #C5A371;
}

/* Success / error states for contact form */
.form-success {
    background: #d1fae5;
    color: #065f46;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 12px;
}
.form-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 12px;
}

/* Sticky header */
.site-header {
    position: sticky;
    top: 20px;
    z-index: 50;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
