/* ==========================================
   VARIABLES & RE-SET
   ========================================== */
:root {
    --primary-color: #2C4A3E; /* Vert sapin / lierre chic */
    --accent-color: #C5A880;  /* Or champagne */
    --light-bg: #F9F8F6;      /* Blanc pierre cassé */
    --dark-text: #1C2B24;     /* Vert très foncé / noir doux */
    --light-text: #FFFFFF;
    --grey-text: #6A7B73;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    z-index: 1000;
    background-color: rgba(249, 248, 246, 0.95);
    border-bottom: 1px solid rgba(44, 74, 62, 0.08);
    transition: var(--transition-smooth);
}

/* Effet au défilement (géré par JS) */
header.scrolled {
    padding: 15px 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--primary-color);
}

nav a {
    margin-left: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--primary-color);
}

nav a:hover {
    color: var(--accent-color);
}

.btn-nav {
    border: 1px solid var(--accent-color);
    padding: 8px 18px;
    border-radius: 2px;
}

.btn-nav:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
}

/* ==========================================
   HERO SECTION (ACCUEIL) AVEC IMAGE FOND
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-align: center;
    /* On charge l'image en fond */
    background: url('fond-cour.jpg') no-repeat center center / cover;
    padding: 0 20px;
}

/* Filtre assombrissant élégant pour lire le texte par-dessus */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(28, 43, 36, 0.4) 0%, 
        rgba(28, 43, 36, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero .subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--accent-color);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 5px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero .location {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.hero .location i {
    margin-right: 8px;
}

.hero .intro-text {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 40px auto;
    opacity: 0.95;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 14px 35px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 2px;
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--light-text);
    border-color: var(--light-text);
}

/* ==========================================
   TITRES ET SECTIONS GÉNÉRAUX
   ========================================== */
section {
    padding: 100px 0;
}

.section-subtitle {
    display: block;
    text-align: center;
    color: var(--accent-color);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    line-height: 1.2;
}

.decorator {
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 15px auto 50px auto;
}

.decorator.dec-white {
    background-color: var(--accent-color);
}

.text-white {
    color: var(--light-text);
}

/* ==========================================
   CHAMBRES (TARIF CARDS)
   ========================================== */
.rooms-section {
    background-color: var(--light-bg);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.room-card {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    border: 1px solid rgba(44, 74, 62, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}

.room-card:hover::before {
    background-color: var(--accent-color);
}

/* Chambre favorite "coup de cœur" */
.room-card.featured {
    border-color: var(--accent-color);
    background-color: #FAFAF8;
}

.room-card.featured::before {
    background-color: var(--accent-color);
    height: 4px;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--light-text);
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 10px;
    letter-spacing: 1px;
}

.room-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.room-details {
    color: var(--grey-text);
    font-size: 0.85rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.room-features {
    list-style: none;
    margin-bottom: 30px;
}

.room-features li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--dark-text);
    display: flex;
    align-items: center;
}

.room-features li i {
    color: var(--accent-color);
    width: 25px;
    font-size: 0.95rem;
}

.room-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--grey-text);
}

/* ==========================================
   AMENITIES (SERVICES INCLUS)
   ========================================== */
.amenities-section {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.amenity-item {
    text-align: center;
    padding: 20px;
}

.amenity-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.amenity-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.amenity-item p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 280px;
    margin: 0 auto;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    background-color: var(--light-bg);
}

.contact-box {
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
}

.col {
    flex: 1;
    padding: 60px;
}

.contact-info h2 {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info .lead {
    font-size: 0.95rem;
    color: var(--grey-text);
    margin-bottom: 40px;
    font-weight: 300;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-top: 4px;
}

.info-item strong {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.info-item p {
    font-weight: 300;
    margin-top: 5px;
    font-size: 1rem;
}

.info-item a:hover {
    color: var(--accent-color);
}

/* Zone visuelle à droite du contact */
.contact-map {
    background: linear-gradient(rgba(44, 74, 62, 0.85), rgba(44, 74, 62, 0.85)), url('fond-cour.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    position: relative;
    outline: 15px solid rgba(197, 168, 128, 0.2);
    outline-offset: -30px;
}

.contact-visual {
    padding: 40px;
}

.contact-visual h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.contact-visual p.italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--accent-color);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background-color: #1C2B24;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 30px 20px;
    font-size: 0.8rem;
    font-weight: 300;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================
   RÉPONSES RESPONSIVE (Mobiles/Tablettes)
   ========================================== */
@media (max-width: 900px) {
    .contact-box {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    header {
        position: relative;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        background-color: var(--light-bg);
    }
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    nav a {
        margin: 0;
    }
    .col {
        padding: 40px 20px;
    }
    .contact-map {
        height: 300px;
        outline: none;
    }
}