/* LODGE/Savannah/static/css/home.css */

/* --- 3. HOME --- */
.hero {
    height: 100vh;

    /* 1. LA SÉCURITÉ : La couleur marron de fond (s'affiche toujours en premier) */
    background-color: #5C5648;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 4px rgba(0,0,0,0.9);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin-bottom: 50px;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

/* CORRECTIF SPECIAL : BOUTONS SUR FOND SOMBRE (Hero) */
.hero .btn-cta:hover {
    background-color: var(--white);
    color: var(--earth-dark);
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Grilles & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: none;
    transition: transform 0.4s ease;
}
.card:hover { transform: translateY(-10px); }

.card-img {
    height: 280px;
    background-color: #DDD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.card-content { padding: 35px; text-align: left; }

.card-content h3 {
    font-family: var(--font-heading);
    color: var(--earth-dark);
    margin-bottom: 10px;
    font-size: 1.6rem;
}
.price {
    display: block;
    color: #a13607; /* Utilise une couleur foncée */
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1rem;
}
.card-content p { color: #828080; margin-bottom: 25px; font-size: 0.95rem; }

/* --- RESPONSIVE HOME --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .grid-3 { grid-template-columns: 1fr; }
}