/* ==========================================================================
   1. PALETTE DE COULEURS CHAUDES & FÉERIQUES (BRUN, ROSE & OR)
   ========================================================================== */
:root {
    --couleur-magie: #d4a373;        /* Or vieux / Bronze chaud des lianes */
    --couleur-rose-magique: #ffb3c6; /* Rose poudré et doux de la robe */
    --couleur-titre: #fae1dd;        /* Blanc rosé chaleureux */
    --fond-carte: rgba(28, 15, 23, 0.93); /* Brun chocolat très sombre et violacé */
    --arrondi-galerie: 35px;       
}

/* ==========================================================================
   2. ANIMATIONS MAGIQUES
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 163, 115, 0.4), 0 10px 30px rgba(0, 0, 0, 0.8); border-color: rgba(212, 163, 115, 0.6); }
    50% { box-shadow: 0 0 40px rgba(212, 163, 115, 0.8), 0 10px 30px rgba(0, 0, 0, 0.8); border-color: rgba(212, 163, 115, 1); }
}

@keyframes floatingMagique {
    0%, 100% { transform: translateY(-12px); }
    50% { transform: translateY(-22px); }
}

@keyframes scintillement {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes tourbillonMagique {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(0.9); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.15); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(0.9); opacity: 0.3; }
}

/* ==========================================================================
   3. STRUCTURE GÉNÉRALE & ÉTOILES DU BLOG
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial Black', Gadget, sans-serif; 
}

body {
    padding-top: 0 !important; 
    
    /* LE SCELLAGE DE VOTRE VRAI FOND EN MAJUSCULES */
    background-image: url('FOND.PNG') !important;
    
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    background-color: #12090e !important; 
    color: #ffffff;
    margin: 0;
    overflow-x: hidden;
}




.etoiles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
    z-index: 1;
}

.etoile {
    position: absolute;
    background-color: #ffebd6; /* Étoiles blanc crème chaud */
    border-radius: 50%;
    box-shadow: 0 0 8px #ffebd6;
    animation: scintillement 3s infinite ease-in-out;
}

.etoile.rose { background-color: #ffb3c6; box-shadow: 0 0 8px #ffb3c6; }
.etoile.lent { animation-duration: 4s; }
.etoile.rapide { animation-duration: 2s; }



/* ==========================================================================
   BARRE DE NAVIGATION : LOOK FÉERIQUE FIXE ET SÉCURISÉ (SANS ANIMATION)
   ========================================================================= */
./* ==========================================================================
   BARRE DE NAVIGATION UNIFIÉE EN CAPSULES OVALES (ALIGNEMENT HORIZONTAL)
   ========================================================================== */
.navbar {
    width: 100% !important;
    max-width: 1350px !important; /* Calé pile sur la largeur de la bannière */
    margin: 25px auto 25px auto !important; 
    position: relative !important;
    z-index: 999999 !important; /* Passe obligatoirement au-dessus de la bannière */
}

/* LA LISTE UNIQUE QUI RANGE TOUT LE MONDE CÔTE À CÔTE */
.nav-links-liste-unique {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important; /* Se range sur 2 lignes proprement si l'écran est petit */
    gap: 12px !important; /* Petit espace entre chaque bouton */
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

/* CHAQUE BOUTON DEVIENT SA PROPRE CAPSULE OVALE EN POINTILLÉS */
.nav-item-ovale {
    background: rgba(28, 15, 23, 0.95) !important; /* Chocolat opaque */
    padding: 8px 22px !important; 
    border: 2px dashed #b87333 !important; /* Pointillés cuivre */
    border-radius: 25px !important; /* Forme ovale douce */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
}

/* SURVOL ET PAGE ACTIVE */
.nav-item-ovale:hover, .nav-item-ovale.dropdown-container:hover {
    border-color: #ffb3c6 !important; /* S'allume en rose */
}

.nav-item-ovale a {
    font-family: "Palatino", serif !important;
    font-size: 0.85rem !important;
    letter-spacing: 1.2px !important;
    color: #ffeca9 !important; /* Or doux */
    text-decoration: none !important;
    font-weight: bold !important;
    white-space: nowrap !important;
}

.nav-item-ovale a.active, .nav-item-ovale:hover a {
    color: #ffb3c6 !important;
    text-shadow: 0 0 8px rgba(255, 179, 198, 0.8) !important;
}

/* ==========================================================================
   LE TIROIR DÉROULANT DES BLOGS (FORCÉ AU PREMIER PLAN SANS BUG)
   ========================================================================== */
.dropdown-container {
    position: relative !important;
}

.dropdown-menu {
    display: none !important; 
    position: absolute !important;
    top: 100% !important; 
    left: 50% !important;
    transform: translateX(-50%) translateY(5px) !important; 
    background: rgba(18, 9, 14, 0.98) !important; 
    border: 2px dashed #b87333 !important; 
    border-radius: 12px !important;
    list-style: none !important;
    padding: 8px 0 !important;
    min-width: 200px !important; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
    z-index: 1000000 !important; /* Priorité absolue sur la bannière */
}

.dropdown-menu li {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.dropdown-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    color: #ffeca9 !important;
}

.dropdown-menu li a:hover {
    color: #ffb3c6 !important;
    background: rgba(28, 15, 23, 0.6) !important;
}

.dropdown-container:hover .dropdown-menu {
    display: block !important;
}


/* ==========================================================================
   5. ZONE BANNIÈRE OFFICIELLE CHALEUREUSE (1380X680)
   ========================================================================== */
/* ==========================================================================
   CONFORMITÉ DU CADRE DE LA BANNIÈRE (VERSION OFFICIELLE 1350X680)
   ========================================================================== */
.banniere-container {
    width: 95% !important;
    max-width: 1350px !important; /* Calé pile sur votre nouvelle largeur */
    margin: 0 auto 30px auto !important; /* Espace aéré avant le début du texte */
    padding: 0 !important;
    position: relative !important;
    z-index: 5 !important;
}

.ma-banniere {
    width: 100% !important; /* Occupe tout l'espace de son cadre de 1350px */
    height: 680px !important; /* VOTRE NOUVELLE HAUTEUR PARFAITE ET BLOQUÉE PARTOUT */
    object-fit: fill !important; /* Étire sans couper un seul millimètre du dessin */
    display: block !important;
    margin: 0 auto !important;
    
    /* CADRE EN CUIVRE DOUBLE ULTRA-STABLE ET VISIBLE */
    border: 5px double #b87333 !important; 
    border-radius: var(--arrondi-galerie) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75) !important;
}

.sortilege-magique {
    position: absolute;
    top: 59.5%; 
    left: 47.8%; 
    width: 180px; 
    height: 180px; 
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255,179,198,0.5) 0%, rgba(212,163,115,0.2) 50%, transparent 70%);
    filter: blur(8px);
    box-shadow: 0 0 35px var(--couleur-rose-magique), inset 0 0 25px var(--couleur-magie);
    animation: tourbillonMagique 5s infinite linear;
}

/* ==========================================================================
   6. LA BOUTIQUE DE KITS (CADRES CHOCOLAT SOMBRE ET BORDURES BRONZE)
   ========================================================================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px; 
    max-width: 1500px; 
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1.2s ease-out forwards;
}

.card {
    background: var(--fond-carte);
    backdrop-filter: blur(10px);
    border-radius: var(--arrondi-galerie);
    overflow: hidden;
    border: 4px solid var(--couleur-magie); 
    box-shadow: 0 0 20px rgba(212, 163, 115, 0.25), 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
}

.card:hover {
    border-color: var(--couleur-rose-magique); 
    box-shadow: 0 0 45px rgba(255, 179, 198, 0.6), 0 15px 40px rgba(0, 0, 0, 0.5);
    animation: floatingMagique 4s infinite ease-in-out;
}

.card-image-box {
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-bottom: 4px solid var(--couleur-magie);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

.card:hover img { transform: scale(1.08) rotate(1deg); }
.card-content { padding: 30px 25px; text-align: center; }

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--couleur-titre);
    text-shadow: 0 0 10px rgba(212, 163, 115, 0.6), 0 2px 4px rgba(0,0,0,0.9);
}

.card-content p {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #fae1dd; 
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 45px; 
}

.btn-telecharger {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: #ffffff;
    background-color: transparent;
    padding: 12px 30px;
    border-radius: 25px;
    border: 3px solid var(--couleur-magie);
    font-weight: bold;
    box-shadow: 0 0 10px rgba(212, 163, 115, 0.2);
    transition: all 0.3s ease;
}

.btn-telecharger:hover {
    background-color: var(--couleur-magie);
    color: #12090e; 
    box-shadow: 0 0 25px var(--couleur-magie), 0 0 10px #ffffff;
    transform: scale(1.05);
}
/* ==========================================================================
   7. STYLE DE LA PAGE DU LIVRE D'OR
   ========================================================================== */
.page-livre-dor {
    padding-top: 40px;
}

.guestbook-container {
    width: 95%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 30px;
    background: var(--fond-carte);
    backdrop-filter: blur(10px);
    border-radius: var(--arrondi-galerie);
    border: 4px solid var(--couleur-magie);
    box-shadow: 0 0 25px rgba(212, 163, 115, 0.3), 0 15px 40px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out forwards;
}

.guestbook-container h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--couleur-titre);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(212, 163, 115, 0.6);
}

.guestbook-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.guestbook-form input, .guestbook-form textarea {
    background: rgba(18, 9, 14, 0.8);
    border: 2px solid rgba(212, 163, 115, 0.4);
    border-radius: 15px;
    padding: 15px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.guestbook-form input:focus, .guestbook-form textarea:focus {
    outline: none;
    border-color: var(--couleur-magie);
    box-shadow: 0 0 15px rgba(212, 163, 115, 0.4);
}

.btn-envoyer {
    align-self: center;
    background: transparent;
    border: 3px solid var(--couleur-rose-magique);
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-envoyer:hover {
    background: var(--couleur-rose-magique);
    color: #12090e;
    box-shadow: 0 0 20px var(--couleur-rose-magique);
    transform: scale(1.03);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.comment-item {
    background: rgba(45, 25, 35, 0.5);
    border-left: 4px solid var(--couleur-magie);
    padding: 25px;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(212, 163, 115, 0.2);
    padding-bottom: 8px;
}

.comment-author { color: var(--couleur-titre); letter-spacing: 1px; }
.comment-date { color: #d4a373; }
.comment-text { font-family: Arial, sans-serif; font-size: 0.95rem; line-height: 1.5; color: #fae1dd; }

/* ==========================================================================
   8. DESIGN DE LA PAGINATION NUMÉROTÉE (50X50 - ARRONDI 42)
   ========================================================================== */
.pagination-container {
    display: flex !important;
    flex-direction: row !important; 
    justify-content: center !important; 
    align-items: center !important;
    gap: 15px !important;
    margin: 60px auto 20px auto !important;
    width: 100% !important; 
    position: relative !important;
    z-index: 10 !important;
}

.pagination-number, .pagination-arrow {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 50px !important;       
    height: 50px !important;      
    text-decoration: none !important;
    color: var(--couleur-rose-magique) !important;
    background: var(--fond-carte) !important;
    border: 3px solid var(--couleur-magie) !important; 
    border-radius: 42px !important; 
    font-size: 1rem !important;
    font-weight: bold !important;
    box-shadow: 0 0 12px rgba(212, 163, 115, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.pagination-number:hover, .pagination-arrow:hover {
    color: #12090e !important;
    background-color: var(--couleur-magie) !important;
    border-color: #ffb3c6 !important;
    box-shadow: 0 0 25px var(--couleur-magie), 0 0 10px #ffffff !important;
    transform: translateY(-3px) !important;
}

.pagination-number.active {
    color: #ffffff !important; 
    background-color: var(--couleur-magie) !important; 
    border-color: #ffb3c6 !important; 
    box-shadow: 0 0 25px var(--couleur-magie), 0 0 10px rgba(212, 163, 115, 0.5) !important; 
}

.pagination-arrow.disabled {
    opacity: 0.3 !important;
    pointer-events: none !important; 
    border-color: rgba(212, 163, 115, 0.3) !important;
}

/* ==========================================================================
   9. STYLE DE LA SECTION TERMES & CONDITIONS (ZÉRO COUPURE)
   ========================================================================== */
.page-termes {
    padding-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center; 
    align-items: center;
}

.termes-container {
    width: 95%;
    max-width: 1500px;
    margin: 40px auto;
    padding: 50px 45px; 
    background: var(--fond-carte);
    border: 4px solid var(--couleur-magie);
    border-radius: var(--arrondi-galerie);
    box-shadow: 0 0 25px rgba(212, 163, 115, 0.4), 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 10;
    position: relative;
    text-align: center; 
}

.termes-container h2 {
    text-align: center;
    color: var(--couleur-titre);
    margin-bottom: 40px;
    font-size: 1.8rem; 
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--couleur-magie), 0 0 20px rgba(212, 163, 115, 0.5);
}

.termes-content {
    width: 100%; 
    max-width: 100%; 
    margin: 0 auto; 
    text-align: left; 
}

.termes-content p {
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
    color: #fae1dd;
    margin-bottom: 25px; 
    text-transform: uppercase;
}

.termes-content p strong {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(212, 163, 115, 0.5);
}

.nom-marque {
    white-space: nowrap !important; 
    color: var(--couleur-titre) !important;
    font-weight: bold;
    text-shadow: 0 0 5px var(--couleur-magie);
}

/* ==========================================================================
   10. STYLE DE LA PAGE ET DE LA BOÎTE DE CONTACT AVEC SYMBOLES GROSSIS
   ========================================================================== */
.page-contact {
    padding-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-box-outer {
    width: 95%;
    max-width: 850px; 
    margin: 40px auto;
    padding: 15px; 
    background: rgba(28, 15, 23, 0.6);
    border: 4px solid var(--couleur-magie); 
    border-radius: var(--arrondi-galerie);
    box-shadow: 0 0 25px rgba(212, 163, 115, 0.4), 0 15px 40px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 10;
}

.contact-box-inner {
    width: 100%;
    padding: 40px 35px;
    background: rgba(28, 15, 23, 0.95);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 179, 198, 0.6); 
    border-radius: calc(var(--arrondi-galerie) - 10px);
    position: relative;
}

.deco-coin {
    position: absolute !important;
    color: var(--couleur-rose-magique) !important;
    font-size: 2rem !important; 
    text-shadow: 0 0 12px var(--couleur-rose-magique) !important;
    opacity: 0.9 !important;
}
.haut-gauche { top: 15px; left: 20px; }
.haut-droite { top: 15px; right: 20px; }
.bas-gauche  { bottom: 15px; left: 20px; }
.bas-droite  { bottom: 15px; right: 20px; }

.contact-box-inner h2 {
    text-align: center;
    color: var(--couleur-titre);
    margin-bottom: 35px;
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--couleur-magie);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    background: rgba(18, 9, 14, 0.85);
    border: 2px solid rgba(212, 163, 115, 0.4);
    border-radius: 18px; 
    padding: 15px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--couleur-rose-magique); 
    box-shadow: 0 0 15px rgba(255, 179, 198, 0.4);
    background: rgba(35, 18, 28, 0.9);
}

.btn-contact-envoyer {
    align-self: center;
    background: transparent;
    border: 3px solid var(--couleur-rose-magique);
    color: #ffffff;
    padding: 12px 45px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.btn-contact-envoyer:hover {
    background: var(--couleur-rose-magique);
    color: #12090e;
    box-shadow: 0 0 25px var(--couleur-rose-magique), 0 0 10px #ffffff;
    transform: scale(1.04);
}

/* ==========================================================================
   11. STYLE DE LA PAGE D'ACCUEIL (RÉALIGNEMENT GLOBAL STRICT A 1500PX)
   ========================================================================== */

/* ==========================================================================
   11. STYLE DE LA PAGE D'ACCUEIL (RÉALIGNEMENT GLOBAL STRICT A 1500PX)
   ========================================================================== */
.welcome-container {
    width: 95% !important;
    max-width: 1500px !important; 
    margin: 40px auto !important;
    padding: 50px 45px !important; /* Donne de l'air généreux au texte */
    background: var(--fond-carte) !important;
    border: 12px double #b87333 !important; /* Le grand cadre double en cuivre brossé est ici ! */
    border-radius: var(--arrondi-galerie) !important;
    box-shadow: 0 0 30px rgba(212, 163, 115, 0.25), 0 15px 40px rgba(0, 0, 0, 0.9) !important;
    z-index: 10 !important;
    position: relative !important;
    overflow: hidden !important;
}

.welcome-magic-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.magic-symbol {
    position: absolute !important;
    color: var(--couleur-magie) !important;
    opacity: 0.2 !important;
    font-size: 1.4rem !important;
    text-shadow: 0 0 10px var(--couleur-magie) !important;
}
.magic-symbol.p1 { top: 15% !important; left: 3% !important; }
.magic-symbol.p2 { bottom: 15% !important; left: 3% !important; }
.magic-symbol.p3 { top: 20% !important; right: 3% !important; }

/* ==========================================================================
   11. STYLE DE LA PAGE D'ACCUEIL (RÉALIGNEMENT ET COULEURS DE LA BANNIÈRE)
   ========================================================================== */




/* ==========================================================================
   11. STYLE DE LA PAGE D'ACCUEIL - FAIRY WITCH DESIGNS
   ========================================================================== */
/* ==========================================================================
   11. ALIGNEMENT HARMONIEUX DU RESTE DE LA PAGE À 1350PX (MÊME LARGEUR)
   ========================================================================== */

/* LE GRAND CONTENEUR DE L'HISTOIRE PARFAITEMENT ALIGNÉ À VOTRE BANNIÈRE */
.welcome-container {
    width: 95% !important;
    max-width: 1350px !important; /* LARGEUR STRICTEMENT IDENTIQUE À 1350PX ! */
    margin: 0 auto 50px auto !important; /* Centré au millimètre près */
    padding: 40px !important; 
    background: rgba(28, 15, 23, 0.93) !important; 
    border: 5px double #b87333 !important; 
    border-radius: var(--arrondi-galerie) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}


.welcome-text p {
    font-family: "Palatino", "Palatino Linotype", "Book Antiqua", serif, "Segoe UI Emoji" !important;
    font-size: 1.25rem !important; /* Texte légèrement plus grand pour le confort */
    line-height: 2.1 !important; /* Grand espace entre les lignes pour aérer les 50 lignes */
    color: #fff4e6 !important; /* Blanc crème chaud */
    margin-bottom: 28px !important; /* Espace équilibré entre les paragraphes */
    text-transform: none !important;
    letter-spacing: 0.5px !important;
}


/* LES MOTS CLÉS SCINTILLENT TOUT DOUCEMENT */
.welcome-text strong {
    color: #ffb3c6 !important; /* Rose poudré assorti */
    font-weight: bold !important;
    text-shadow: 0 0 6px rgba(255, 179, 198, 0.4) !important;
}




.action-welcome {
    display: flex !important;
    justify-content: center !important;
    margin-top: 45px !important;
    position: relative !important;
    z-index: 5 !important;
}


/* GROSSIR LES ÉMOJIS SANS TOUCHER AU RESTE DU TEXTE */
.welcome-text p::first-letter {
    font-size: 1.7rem !important; /* Rend l'émoji plus gros et visible */
    margin-right: 8px !important; /* Crée un joli petit espace après l'émoji */
    vertical-align: middle !important; /* Aligne l'émoji parfaitement au centre de la ligne */
    display: inline-block !important;
}




/* LE GROS BOUTON EN CUIVRE ASSORTI */
.btn-entrer-galerie {
    display: inline-block !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-size: 0.95rem !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
    background: transparent !important;
    padding: 14px 45px !important;
    border-radius: 25px !important;
    border: 5px solid #b87333 !important; /* Bordure en cuivre forgé */
    font-weight: bold !important;
    box-shadow: 0 0 15px rgba(184, 115, 51, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-entrer-galerie:hover {
    background: #b87333 !important; /* Se remplit de cuivre chaud au survol */
    color: #12090e !important;
    box-shadow: 0 0 25px #b87333, 0 0 10px #ffffff !important;
    transform: scale(1.04) !important;
}

footer {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 100px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #aa7c56;
}


/* ==========================================================================
   12. EFFET BARRE DE PROGRESSION "POTION FÉERIQUE"
   ========================================================================== */
#potion-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px; /* Fin et élégant */
    background: rgba(28, 15, 23, 0.4); /* Fond chocolat discret */
    z-index: 10000;
    pointer-events: none;
}

#potion-bar {
    height: 100%;
    width: 0%;
    /* Dégradé cuivre doré vers rose poudré assorti à la bannière */
    background: linear-gradient(90deg, #b87333, #ffb3c6);
    box-shadow: 0 0 10px #ffb3c6;
    position: relative;
    transition: none !important; /* Stoppe le tremblement */
}

/* PARTICULES DE BULLES QUI S'ÉCHAPPENT EN BOUT DE BARRE */
#potion-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: -5px;
    width: 20px;
    height: 15px;
    background-image: radial-gradient(circle, #fff4e6 20%, transparent 20%), 
                      radial-gradient(circle, #ffb3c6 20%, transparent 20%);
    background-size: 5px 5px;
    background-position: 0 0, 8px 4px;
    background-repeat: no-repeat;
    animation: bubble-rise 0.8s infinite ease-out;
}

@keyframes bubble-rise {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-10px) scale(1.2); opacity: 0; }
}


