* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #F5EFE3;
    color: #1a1a1a;
    font-family: 'Nunito', sans-serif;
}

.container {
    width: min(1280px, 92%);
    margin: 0 auto;
}

.hero-home {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero-content h1 span {
    color: #D4AF37; /* Touche dorée */
    font-style: italic;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto 3rem;
    max-width: 750px;
    line-height: 1.8;
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.btn-hero-primary {
    background: #2F5233;
    color: white;
    border: 2px solid #2F5233;
}

.btn-hero-primary:hover {
    background: #234019;
    border-color: #234019;
    color: white;
}

.btn-hero-secondary {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: #1a1a1a;
}

.search-section {
    background: white;
    padding: 3rem 0;
}

.search-box {
    background: #F5EFE3;
    padding: 2rem;
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    align-items: end;
}

.search-field label {
    display: block;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 600;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 0.95rem 1rem;
    background: white;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    outline: none;
    font-family: 'Nunito', sans-serif;
}

.search-field input:focus,
.search-field select:focus {
    border-color: #2F5233;
    box-shadow: 0 0 0 3px rgba(47, 82, 51, 0.1);
}

.search-button-wrap {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.search-btn {
    width: 100%;
    background: #2F5233;
    color: white;
    border: none;
    padding: 0.95rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.search-btn:hover {
    background: #234019;
}

@media (max-width: 1024px) {
    .search-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .search-button-wrap {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .search-grid {
        grid-template-columns: 1fr;
    }
    .search-button-wrap {
        grid-column: span 1;
    }
}