/* Variables de couleurs */
:root {
    --primary: #BD2DFF; /* L'orange de votre identité */
    --primary-hover: #FF57FF;
    --text-dark: #2c3e50; /* Gris foncé doux pour la lecture */
    --text-light: #596a7b; /* Gris plus clair pour les paragraphes */
    --bg-white: #ffffff;
    --bg-offwhite: #f9f9f7; /* Blanc cassé très léger pour la douceur */
}

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

html {
    scroll-behavior: smooth; /* Défilement fluide des ancres */
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

/* En-tête et Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

header .logo img {
    height: 45px;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

/* Boutons */
.btn-primary, .btn-reservation {
    background-color: var(--primary);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 4px; /* Coins légèrement arrondis, plus moderne que très ronds */
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.btn-primary:hover, .btn-reservation:hover {
    background-color: var(--primary-hover);
}

/* Sections Globales */
section {
    padding: 90px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.bg-light {
    background-color: var(--bg-offwhite);
}

/* Bannière Hero (Design Épuré et Minimaliste) */
#hero {
    background-color: var(--bg-offwhite);
    padding: 120px 20px 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}
/* Logo dans la bannière principale */
.hero-logo {
    max-width: 180px; /* Taille maximale du logo, à ajuster selon vos goûts */
    height: auto;
    margin-bottom: 30px; /* Espace entre le logo et le titre */
    display: block;
    margin-left: auto;
    margin-right: auto;
}
#hero h1 {
    font-size: 3rem;
    font-weight: 300; /* Police fine et élégante */
    letter-spacing: -0.5px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

#hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Image de présentation pleine largeur */
#presentation-image {
    padding: 0;
}

.img-large {
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
    display: block;
}

/* Grilles (Cartes) */
.grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    flex: 1;
    min-width: 280px;
    border: 1px solid #f0f0f0;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Tarifs */
.price {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 15px 0;
}

.center-button {
    margin-top: 50px;
}

/* Localisation */
.img-fluid {
    max-width: 100%;
    width: 800px;
    height: auto;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

#localisation p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Pied de page */
footer {
    background-color: var(--text-dark);
    color: #fff;
    padding: 60px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.footer-info h3, .footer-social h3 {
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--bg-offwhite);
}

.footer-info p {
    color: #b0c4de; /* Gris bleuté clair */
}

.footer-social img {
    width: 32px;
    margin-right: 15px;
    transition: transform 0.2s;
}

.footer-social img:hover {
    transform: translateY(-3px); /* Petit effet de soulèvement au survol */
}

/* Responsive (Tablettes et Téléphones) */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    #hero {
        padding: 80px 20px;
    }
    #hero h1 {
        font-size: 2.2rem;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .footer-social img {
        margin: 0 10px;
    }
}
    /* Module OpenStreetMap */
.map-container {
    max-width: 800px;
    margin: 40px auto 15px auto;
    border-radius: 8px;
    overflow: hidden; /* Permet d'appliquer les bords arrondis à l'iframe */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Lien sous la carte */
#localisation small a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

#localisation small a:hover {
    color: var(--primary-hover);
}