/* 🎭 Style général */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background: #000;
    color: #FFD700;
    text-align: center;
}

/* 🔗 Navigation */
nav {
    background: rgba(17, 17, 17, 0.95);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid #FFD70055;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav ul { list-style: none; padding: 0; margin: 0; }
nav ul li { display: inline-block; margin: 0 1.2rem; }
nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
nav ul li a:hover { color: #fff; text-shadow: 0 0 8px #FFD700; }

/* Bouton spécial pour "Inscriptions & Paiements" */
nav ul li a.highlight {
    background: linear-gradient(135deg, #FFD700, #E6C200);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    transition: all 0.3s ease;
}
nav ul li a.highlight:hover {
    background: linear-gradient(135deg, #FFF3B0, #FFD700);
    color: #111;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.9);
    transform: scale(1.05);
}

/* 🖼️ Hero (image au-dessus, texte en dessous) */
.hero {
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.hero-content {
    display: flex;
    flex-direction: column; /* toujours empilé */
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* 🎭 Image affiche (toujours en haut) */
.hero-image {
    order: 0;
    width: 100%;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    width: 100%;
    border: 3px solid #FFD700;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.hero-img:hover { transform: scale(1.05); }

/* 📜 Bloc texte façon "invitation" */
.invitation-box {
    order: 1;
    background: rgba(255, 215, 0, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    padding: 2rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    max-width: 700px;
}

.invitation-box .intro { font-size: 1.2rem; margin-bottom: 1rem; }
.invitation-box .convite {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFD700;
    margin: 1rem 0;
}
.invitation-box h1 {
    font-size: 2.4rem;
    color: #FFD700;
    margin: 1rem 0;
    text-shadow: 2px 2px 10px #000;
}
.invitation-box .highlight {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 1.5rem 0;
    color: #fff;
    text-shadow: 0 0 8px #FFD700;
}
.invitation-box .note { font-size: 1rem; font-style: italic; color: #FFD700; }
.invitation-box .signature {
    margin-top: 2rem;
    font-style: italic;
    font-size: 1.1rem;
    color: #FFD700;
}


/* 📐 Sections */
section { padding: 2rem 2rem; }
section:nth-of-type(even) { background: #0a0a23; }
section:nth-of-type(odd) { background: #000; }
section h2 {
	font-family: 'Tangerine', cursive;
    font-size: 5rem;
    margin-bottom: 1.5rem;
	margin-top: 0em;
    color: #FFD700;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    text-shadow: 0 0 10px #000;
}
section h2::before {
    content: "";
    display: inline-block;
    width: 36px; height: 36px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Assignation des icônes */
#programme h2::before { background-image: url('programme.png'); }
#repas h2::before { background-image: url('repas.png'); }
#inscriptions h2::before { background-image: url('inscriptions.png'); }
#hebergements h2::before { background-image: url('hebergements.png'); }
#enfants h2::before { background-image: url('enfants.png'); }
#coordonnees h2::before { background-image: url('coordonnees.png'); }

/* Texte & images */
section p {
    font-family: 'Arial', sans-serif;
    font-size: 1.15rem;
    color: #f0f0f0;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
}
.section-img {
    width: 80%;
    margin: 2rem auto;
    display: block;
    border-radius: 12px;
    border: 2px solid #FFD70055;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

/* 📑 Spécifiques : hébergements */
#hebergements h3 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: #FFD700;
    text-shadow: 0 0 8px #000;
}
#hebergements ul {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
#hebergements ul li {
    margin: 1.5rem 0;
    padding: 1rem;
    font-size: 1.05rem;
    color: #eee;
    border-bottom: 1px solid rgba(255, 215, 0, 0.4);
    transition: background 0.3s ease;
}
#hebergements ul li:hover {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
}
#hebergements a {
    color: #FFD700; font-weight: bold; text-decoration: none;
}
#hebergements a:hover { color: #fff; text-shadow: 0 0 6px #FFD700; }

/* 📩 Coordonnées */
#coordonnees .contact-info {
    max-width: 700px;
    margin: 2rem auto;
    font-size: 1.2rem;
    line-height: 1.8;
}
#coordonnees .contact-info p { margin: 0.6rem 0; color: #f0f0f0; }
#coordonnees .contact-info .icon { color: #FFD700; margin-right: 0.5rem; }
#coordonnees a {
    color: #FFD700;         /* couleur dorée */
    text-decoration: none;  /* supprime le soulignement */
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
#coordonnees a:hover {
    color: #fff;  /* blanc au survol */
    text-shadow: 0 0 8px #FFD700;
}

/* 📌 Inscriptions */
#inscriptions { text-align: center; }
#inscriptions .inscription-content {
    max-width: 800px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8;
}
#inscriptions .btn-inscription {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 0.7rem 1.5rem;
    margin: 1rem 0;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}
#inscriptions .btn-inscription:hover { background: #fff; transform: scale(1.05); }
#inscriptions .paiement-box {
    background: rgba(255,215,0,0.1);
    border: 1px solid #FFD70055;
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.important-note {
    background: #FFD700;
    color: #000;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* 🍴 Repas */
#repas { text-align: center; }
#repas .repas-box {
    background: rgba(255,215,0,0.1);
    border: 1px solid #FFD70055;
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    max-width: 600px;
}
#repas .tarif h3 { color: #FFD700; }
#repas .repas-tarifs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
#repas .tarif {
    flex: 0 1 280px; /* largeur contenue */
    max-width: 320px; /* limite supérieure */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #FFD70055;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-align: center;
}
#repas .tarif .categorie {
    font-size: 1.6rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 8px #000;
}
#repas .tarif .prix {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    margin: 0.3rem 0;
}
#repas .tarif .prix span {
    font-size: 1.5rem;
    color: #FFD700;
}
#repas .tarif .detail {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 0.8rem;
}
#repas .tarif .note {
    font-size: 0.95rem;
    color: #eee;
    font-style: italic;
    line-height: 1.5;
}

/* ⏰ Programme */
#programme { text-align: center; }
#programme .timeline {
    max-width: 700px;
    margin: 2rem auto;
    padding-left: 2rem;
    border-left: 2px solid #FFD70055;
    position: relative;
}
#programme .event { margin: 1.5rem 0; text-align: left; }
#programme .event::before {
    content: "●";
    position: absolute;
    left: -1.2rem;
    color: #FFD700;
    font-size: 1.2rem;
}

/* 📌 Footer */
footer {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #000;
    color: #FFD700;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    border-top: 2px solid rgba(255, 215, 0, 0.4);
}

/* ⬆️ Bouton retour en haut */
#backToTop {
    position: fixed;
    bottom: 20px; right: 20px;
    background: #FFD700;
    border: none;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    display: none;
    transition: all 0.3s ease;
}
#backToTop:hover { background: #fff; transform: scale(1.15); }
#backToTop .icon-up { width: 28px; height: 28px; fill: #000; }

/* 📱 Responsive */
@media (max-width: 768px) {
    nav ul li { display: block; margin: 0.6rem 0; }
    .hero h1 { font-size: 2rem; }
    section h2 { font-size: 1.8rem; }
    .section-img { width: 95%; }
}

.hero-title {
  font-family: 'Tangerine', cursive;
  font-size: 4.2rem; /* police assez grande pour être lisible */
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 700; /* la version "gras" garde les pleins et déliés élégants */
  color: #FFD700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.7), 2px 2px 8px #000;
  letter-spacing: 1px;
}

#enfants .paiement-box {
    background: rgba(255,215,0,0.1);
    border: 1px solid #FFD70055;
    border-radius: 12px;
    padding: 1rem;
    margin: 0 auto; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    max-width: 800px; 
	font-size: 1.1rem; 
	line-height: 1.8;
}

/* ✅ Encart gauche pour ordinateur */
.encart-gauche {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #FFD700;
    color: #000;
    padding: 1rem 1.5rem;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 280px;
}

/* ✅ Bandeau mobile flottant en haut */
.bandeau-mobile {
    display: none;
}

/* 🎯 Spécifique pour les petits écrans */
@media (max-width: 600px) {
    .encart-gauche {
        display: none;
    }

    .bandeau-mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #FFD700;
        color: #000;
        padding: 0.8rem 1rem;
        font-weight: bold;
        font-size: 1rem;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 9999;
    }

    /* Pour éviter que le contenu soit caché sous le bandeau */
    body {
        padding-top: 3rem;
    }
}