/* ==========================================================================
   1. CONFIGURATION GLOBALE
   ========================================================================= */
body {
    background: #1f3a2d;
    color: #d4b24a;
    font-family: "Georgia", serif;
    margin: 0;
    text-align: center;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: #d4b24a;
    text-decoration: none;
    font-size: 20px;
}

/* ==========================================================================
   2. BANNIÈRE ET TITRES
   ========================================================================= */
.banner {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom: 3px solid #d4b24a;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1.titre-principal {
    position: absolute;
    top: 15px;
    left: 30px;
    font-size: 80px;
    margin: 0;
    font-family: "Sugar", "Cursive", sans-serif;
    color: #d4b24a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

h2.sous-titre {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 50px;
    font-weight: bold;
    margin: 0;
    font-family: 'Georgia', serif;
    color: #1f3a2d; 
    padding: 6px 16px;                     
    -webkit-text-stroke: 1px #d4b24a;
}

/* ==========================================================================
   3. DESIGN DES BOUTONS UNIQUE (POUR TOUS LES BOUTONS)
   ========================================================================= */
.btn-nav {
    font-family: "Bradley Hand ITC", sans-serif; 
    color: #d4b24a;
    text-decoration: none;
    font-size: 14px; /* Un poil plus petit pour que "NOUS CONTACTER" tienne bien */
    font-weight: bold;
    border: 2px solid #d4b24a;
    border-radius: 12px;
    padding: 10px 5px;
    width: 175px;
    text-align: center;
    transition: all 0.3s ease;
    background: transparent;
    box-sizing: border-box;
    
    /* Alignement parfait de l'icône et du texte en colonne */
    display: flex;             
    flex-direction: column;
    justify-content: center;   
    align-items: center;       
    gap: 6px;                  
}

.btn-nav:hover {
    background: #d4b24a;
    color: #1f3a2d;
}

.btn-nav i {
    color: inherit; 
    font-size: 16px;
}

/* Ajustement exclusif pour le bouton avec la liste déroulante */
.btn-nav select {
	font-family: Bradley Hand ITC;
    background: #1f3a2d;
    color: #d4b24a;
    border: 1px solid #d4b24a;
    padding: 3px;
    border-radius: 5px;
    width: 90%;
    font-size: 18px;
    cursor: pointer;
    margin-top: 2px;
}

/* ==========================================================================
   4. CONTENU CENTRAL (TEXTE ET CLUB)
   ========================================================================= */
.presentation {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.texte-accueil {
    font-family: Gabriola;
	font-size: 28px;
    line-height: 1.2;
    color: #d4b24a;
    margin-top: 0;
    margin-bottom: 25px;
}

.invitation {
    font-size: 22px;
    font-weight: bold;
    color: #d4b24a;
    margin: 30px 0;
}

.club {
    margin: 40px 0;
}

.club img {
    max-width: 500px; 
    width: 100%;
    height: auto;
    border: 4px solid #d4b24a;
    border-radius: 6px;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.categories a {
    color: #d4b24a;
    text-decoration: none;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

.categories i {
    margin-right: 8px;
    color: #d4b24a;
}

.categories a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   5. AGENCEMENT GENERAL (LES 3 COLONNES)
   ========================================================================= */
.main-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1350px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 30px;
}

.btn-gauche {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 175px;
    flex-shrink: 0;
}

.btn-droite {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 175px;
    flex-shrink: 0;
}

/* Version téléphone */
@media (max-width: 991px) {
    .main-container {
        flex-direction: column;
        align-items: center;
        gap: 35px;
        padding: 25px 15px;
    }

    .btn-gauche, .btn-droite {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .banner { height: 180px; }
    h1.titre-principal { font-size: 32px; left: 15px; }
    h2.sous-titre { font-size: 18px; right: 15px; bottom: 10px; padding: 4px 10px; }
}

/* ==========================================================================
   6. ANIMATION DES PELOTES
   ========================================================================= */
.pelote {
    position: fixed;
    top: -50px;
    font-size: 24px;
    z-index: 999;
    pointer-events: none;
    animation: chute linear forwards;
}

@keyframes chute {
    to { transform: translateY(105vh) rotate(360deg); }
}