* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;        
}

body {
    overflow-x: hidden;
    overflow-y: scroll; 
    background-color: #ffffff;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #1d396a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
}

.logo-container {
    width: 50px;
    height: 50px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px; 
    cursor: pointer; /* Indique que le logo est cliquable avec une main */
    transition: transform 0.1s ease; /* Transition pour l'effet de clic */
}

.logo-container:active {
    transform: scale(0.90); /* Le logo s'enfonce légèrement au clic */
} 

.logo {
    max-width: 100%;
    max-height: 100%;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.nav-links a.active {
    text-decoration: underline;
    text-underline-offset: 6px;
}

.nav-links a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 22px;
    text-decoration: none;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 75vh;
    margin-top: 70px; 
    overflow: hidden; 
}

.hero-image {
    position: absolute;
    top: -10%; 
    left: 0;
    width: 100%;
    height: 130%; 
    background-image: url('../Images/background_image.jpg'); 
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform; 
}
/* === Overlay Dégradé === */
.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    z-index: 2;
}

.content-section {
    position: relative;
    background-color: #ffffff;
    z-index: 10; 
    padding: 20px 40px 60px 40px;
}

.text-container {
    max-width: 900px;
    margin: 0; 
}

.content-section h2 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.5;
    color: #333333;
    font-style: italic;
}

.highlight-text {
    font-weight: bold;
    font-style: normal; 
    color: #000000;
}

.join-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background-color: #1c355e;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.join-btn:hover {
    background-color: #2c4a7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
        
.join-btn i {
    margin-left: 8px;
}
       /* === Nouvelle section Cartes & Lieux === */
        .locations-section {
            background-color: #f8f9fa; /* Gris très clair pour contraster avec le blanc au-dessus */
            padding: 80px 40px;
        }

        .locations-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            color: #1c355e;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: #e67e22; /* Une touche d'orange volley */
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .location-card {
            display: flex;
            align-items: stretch;
            gap: 40px;
            margin-bottom: 50px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        /* Alterne l'image à droite pour la 2ème carte sur grand écran */
        .location-card.reverse {
            flex-direction: row-reverse;
        }

        .map-container {
            flex: 1;
            min-width: 300px;
            min-height: 350px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .location-info {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .location-info h3 {
            font-size: 24px;
            color: #1c355e;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .location-info h3 i {
            color: #e67e22;
        }

        .location-info > p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .ideas-box {
            background-color: #fff9f5;
            border-left: 4px solid #e67e22;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-top: auto; /* Pousse la boite vers le bas */
        }

        .ideas-box h4 {
            color: #d35400;
            font-size: 16px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ideas-list {
            list-style: none;
        }

        .ideas-list li {
            margin-bottom: 12px;
            font-size: 14px;
            color: #444;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.4;
        }
        
        .ideas-list li i {
            color: #e67e22;
            font-size: 12px;
            margin-top: 4px;
        }

        /* === Nouvelles classes pour les informations pratiques === */
        .info-box {
            background-color: #f0f4f8; /* Bleu très clair */
            border-left: 4px solid #1c355e;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-top: auto;
        }

        .info-box h4 {
            color: #1c355e;
            font-size: 16px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-list {
            list-style: none;
        }

        .info-list li {
            margin-bottom: 12px;
            font-size: 14px;
            color: #444;
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: 1.4;
        }
        
        .info-list li i {
            color: #1c355e;
            font-size: 14px;
            width: 16px; /* Alignement parfait des icônes */
            text-align: center;
        }

        /* Responsive : on empile les cartes sur mobile */
        @media (max-width: 900px) {
            .location-card, .location-card.reverse {
                flex-direction: column;
            }
            .map-container {
                width: 100%;
                height: 300px;
            }
            .location-info {
                width: 100%;
                padding: 25px;
            }
            .locations-section {
                padding: 50px 20px;
            }
        }
.footer {
    background-color: #15294f; /* Bleu un peu plus foncé que la navbar pour marquer la fin de page */
    color: #f8f9fa;
    padding: 60px 40px 20px 40px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #e67e22; /* Orange volley */
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #e67e22;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p i {
    color: #e67e22;
    width: 15px;
    text-align: center;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #f8f9fa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #e67e22;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #aaa;
}