:root {
    --wood-dark: #2b160b;
    --wood: #5b321c;
    --cream: #fff7ea;
    --red: #a61920;
    --gold: #d9b36c;
    --text: #2b1b12;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: var(--cream);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    background: linear-gradient(90deg, #1d0f07, #432411);
    color: white;
    min-height: 92px;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-area img {
    height: 62px;
    width: auto;
}

.logo-text strong {
    display: block;
    font-size: 26px;
}

.logo-text span {
    color: var(--gold);
    font-size: 15px;
    font-style: italic;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 16px;
    font-weight: bold;
}

.main-nav a:hover {
    color: var(--gold);
}

.hero {
    min-height: 720px;
    background:
        linear-gradient(
            90deg,
            rgba(15, 8, 4, 0.70) 0%,
            rgba(15, 8, 4, 0.45) 35%,
            rgba(15, 8, 4, 0.10) 70%
        ),
        url("/assets/images/chalet-granier-bocaux.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    color: white;
    display: flex;
    align-items: center;
    padding: 90px 8%;
}

.hero-content {
    max-width: 620px;
}

.hero h1 {
    font-size: 62px;
    line-height: 1.05;
    margin: 0 0 25px;
    text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

.hero p {
    font-size: 23px;
    line-height: 1.45;
    margin-bottom: 38px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.45);
}

.btn-primary {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 16px 34px;
    border-radius: 40px;
    font-weight: bold;
    box-shadow: 0 10px 22px rgba(0,0,0,0.28);
}

.btn-primary:hover {
    background: #c1272d;
}

.section {
    padding: 70px 8%;
    background: var(--cream);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin: 0 0 38px;
    color: var(--wood-dark);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: rgba(255,255,255,0.92);
    border: 1px solid #ead9bf;
    border-radius: 18px;
    padding: 36px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.card h3 {
    font-size: 25px;
    color: var(--wood);
    margin-top: 0;
}

.site-footer {
    background: var(--wood-dark);
    color: white;
    text-align: center;
    padding: 32px;
}

@media (max-width: 1000px) {
    .site-header {
        height: auto;
        padding: 20px;
        flex-direction: column;
        gap: 18px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 640px;
        background-position: center center;
        padding: 70px 6%;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 19px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}