/* ===================================================
   MAM DES PRAIRIES SAINT MARTIN
   STYLE PREMIUM 2025
=================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Nunito:wght@300;400;600;700&display=swap');

/* Variables */
:root{
    --primary:#A9D6FF;
    --secondary:#D9CCFF;
    --success:#B8E6B8;
    --warning:#FFD7A8;
    --pink:#FFD6E7;
    --dark:#2F3B45;
    --white:#FFFFFF;
    --light:#F8FAFC;

    --shadow:
        0 10px 30px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.3s ease;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Nunito',sans-serif;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;
    line-height:1.8;
}

/* Typography */

h1,h2,h3,h4,h5,h6{
    font-family:'Poppins',sans-serif;
    font-weight:700;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.4rem;
}

.section-title p{
    color:#666;
}

/* Navbar */

.navbar{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.05);
    transition:var(--transition);
}

.navbar-brand img{
    height:70px;
}

.nav-link{
    font-weight:600;
    margin-left:15px;
}

.nav-link:hover{
    color:#6CB6FF;
}

/* Hero */

.hero{
    min-height:85vh;

    background:
    linear-gradient(
        rgba(255,255,255,.7),
        rgba(255,255,255,.7)
    ),
    url("../images/hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.hero-content{
    text-align:center;
}

.hero h1{
    font-size:3.5rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.3rem;
    max-width:800px;
    margin:auto;
}

.hero-buttons{
    margin-top:40px;
}

.btn-custom{
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
}

.btn-primary-custom{
    background:var(--primary);
    border:none;
}

.btn-primary-custom:hover{
    transform:translateY(-3px);
}

.btn-contact{
    background:var(--warning);
    border:none;
}

/* Stats */

.stats{
    margin-top:-60px;
}

.stat-card{
    background:#fff;
    border-radius:var(--radius);
    padding:30px;
    box-shadow:var(--shadow);
    text-align:center;
}

.stat-card h3{
    font-size:2.5rem;
}

.stat-card p{
    margin:0;
}

/* Cards */

.card-premium{
    border:none;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.card-premium:hover{
    transform:translateY(-10px);
}

.card-premium img{
    width:100%;
    height:250px;
    object-fit:cover;
}

/* Activities */

.activity-icon{
    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto;

    border-radius:50%;
    font-size:2rem;
}

.icon-blue{
    background:var(--primary);
}

.icon-green{
    background:var(--success);
}

.icon-pink{
    background:var(--pink);
}

.icon-orange{
    background:var(--warning);
}

/* Team */

.team-card{
    text-align:center;
    padding:30px;
    border-radius:var(--radius);
    background:#fff;
    box-shadow:var(--shadow);
}

.team-photo{
    width:160px;
    height:160px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

/* Gallery */

.gallery-item{
    overflow:hidden;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.gallery-item img{
    width:100%;
    transition:var(--transition);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* Contact */

.contact-box{
    background:#fff;
    border-radius:var(--radius);
    padding:40px;
    box-shadow:var(--shadow);
}

.contact-info{
    margin-bottom:25px;
}

.contact-info i{
    margin-right:10px;
}

/* Form */

.form-control{
    border-radius:12px;
    padding:12px;
}

.form-control:focus{
    box-shadow:none;
    border-color:var(--primary);
}

/* Google Maps */

.map-container{
    overflow:hidden;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

/* Footer */

footer{
    background:var(--dark);
    color:#fff;
    padding:60px 0;
}

footer a{
    color:#fff;
    text-decoration:none;
}

footer a:hover{
    opacity:.8;
}

.footer-title{
    margin-bottom:20px;
}

/* Legal pages */

.legal-content{
    max-width:900px;
    margin:auto;
}

.legal-content h2{
    margin-top:40px;
}

/* Utility */

.bg-pastel-blue{
    background:var(--primary);
}

.bg-pastel-green{
    background:var(--success);
}

.bg-pastel-pink{
    background:var(--pink);
}

.bg-pastel-purple{
    background:var(--secondary);
}

.bg-pastel-orange{
    background:var(--warning);
}

/* Responsive */

@media(max-width:992px){

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

    .hero{
        min-height:auto;
        padding:120px 0;
    }
}

@media(max-width:768px){

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

    .section-title h2{
        font-size:1.8rem;
    }

    .navbar-brand img{
        height:55px;
    }
}
