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

body {
    font-family: 'Inter', sans-serif;
    color: #000000;
    background-color: #FFFFFF;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: 'Merriweather', serif;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.title {
    color: #5E225D;
    /* Violet profond */
}

p {
    margin-bottom: 1rem;
}

img {
    background: #000;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
}


section {
    padding: 4rem 1rem;
}

/* -------- BOUTONS -------- */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background-color: #FBBB00;
    /* Jaune accent */
    color: #000000;
}

.btn-primary:hover {
    background-color: #d9a600;
}

.btn-secondary {
    background-color: #5E225D;
    /* Violet profond */
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #4b1a4b;
}

/* -------- HERO -------- */
.hero {
    position: relative;
    height: 100vh;
    background: url('../media/images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* Violet avec transparence */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FBBB00;
    /* Titre doré */
}

.hero .slogan {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.hero .intro {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #f1f1f1;
}

/* -------- PRESENTATION -------- */
.presentation .text {
    flex: 1;
}

.presentation .image {
    flex: 1;
}

.presentation img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.atouts {
    list-style: none;
    margin-top: 1rem;
}

.atouts li {
    background: #D9D9D7;
    color: #5E225D;
    font-weight: 500;
    padding: 0.6rem 1rem;
    margin-bottom: 0.5rem;
    border-left: 5px solid #FBBB00;
    border-radius: 6px;
}

/* -------- GALERIE -------- */
.galerie {
    text-align: center;
    background-color: #F9F9F9;
    max-width: 1200px;
    margin: auto;

}

.gallery-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(94, 34, 93, 0.25);
}

/* -------- ACTIVITES -------- */
.activites {
    background-color: #FFFFFF;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.activities-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: auto-fill;
    gap: 1.2rem;
}

.activity-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #D9D9D7;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: 0.3s;

}

.activity-card:hover {
    transform: translateY(-5px);
    background: #5E225D;
    color: #ffffff;
}

/* -------- LOCALISATION -------- */
.localisation .container {
    flex-wrap: wrap;
}

.localisation .text {
    flex: 1;
}

.localisation .map {
    flex: 1;
}

.localisation iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(117, 103, 84, 0.3);
}

/* -------- FOOTER -------- */
.footer {
    text-align: center;
    background: #5E225D;
    color: #FFFFFF;
    padding: 2rem 1rem;
}

.footer a {
    color: #FBBB00;
    text-decoration: none;
    margin: 0 5px;
}

.footer a:hover {
    text-decoration: underline;
}

.socials {
    margin-top: 1rem;
}

.socials a {
    color: #FFFFFF;
    margin: 0 0.5rem;
    font-size: 1.2rem;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
    #logo {
        width: 180px;
    }

    .container {
        flex-direction: column;
        padding: 0rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .presentation img {
        margin-top: 1.5rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .slogan {
        font-size: 1rem;
    }
}