/* ========================================
   POLICES CUSTOM - RVS
   ======================================== */

@font-face {
    font-family: 'Alpha Brights';
    src: url('fonts/Alpha_Brights.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Viking';
    src: url('fonts/VIKING-N.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gabriela';
    src: url('fonts/Gabriela_Smithasa.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   VARIABLES & RESET
   ======================================== */

:root {
    /* Palette contemplative */
    --bleu-profond: #1a3a52;
    --bleu-nuit: #0f2537;
    --vert-foret: #2d5016;
    --vert-sauge: #6b8e23;
    --or-doux: #d4af37;
    --beige-chaud: #e8dcc4;
    --blanc-casse: #f8f6f0;
    --gris-doux: #4a5568;
}

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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--gris-doux);
    background: var(--blanc-casse);
}

/* ========================================
   TOGGLE LANGUE (EN HAUT À DROITE)
   ======================================== */

.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--gris-doux);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--bleu-profond);
    color: white;
}

.lang-btn:hover {
    background: var(--bleu-profond);
    color: white;
}

/* ========================================
   HEADER AVEC VIDÉO
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-profond) 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 900px;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.3));
}

.hero h1 {
    font-family: 'Viking', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blanc-casse);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Gabriela', cursive;
    font-size: 2.5rem;
    color: var(--or-doux);
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--or-doux);
    color: var(--bleu-nuit);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: var(--beige-chaud);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ========================================
   SECTION ACTUALITÉS
   ======================================== */

.actualites {
    background: white;
    position: relative;
}

.actualites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.actualite-card {
    background: var(--blanc-casse);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--or-doux);
}

.actualite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-left-color: var(--vert-sauge);
}

.actualite-date {
    font-family: 'Alpha Brights', sans-serif;
    font-size: 0.9rem;
    color: var(--vert-sauge);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.actualite-card h3 {
    font-family: 'Viking', serif;
    color: var(--bleu-profond);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.actualite-card p {
    color: var(--gris-doux);
    line-height: 1.8;
    font-size: 1.05rem;
    white-space: pre-wrap; /* Préserve les sauts de ligne */
}

/* Bouton admin discret */
.admin-btn {
    position: fixed;
    bottom: 80px; /* Au-dessus du bouton fréquences */
    right: 20px;
    background: rgba(107, 142, 35, 0.3);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 998;
}

.admin-btn:hover {
    background: rgba(107, 142, 35, 0.8);
    color: white;
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* Message quand pas d'actualités */
.no-actualites {
    text-align: center;
    padding: 60px 20px;
    color: var(--gris-doux);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .actualites-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-btn {
        bottom: 70px;
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}


/* ========================================
   SECTIONS GÉNÉRALES
   ======================================== */

section {
    padding: 80px 20px;
    /*  max-width: 1200px; */
    margin: 0 auto;
}

.section-title {
    font-family: 'Viking', serif;
    font-size: 2.5rem;
    color: var(--bleu-profond);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-family: 'Gabriela', cursive; 
    /*  font-family: 'Viking', cursive;   */
    /* ici 1.5rem */ 
    font-size: 2.5rem;
    color: var(--vert-foret);
    text-align: center;
    margin-bottom: 30px;
}

/* ========================================
   PENSÉE DU JOUR
   ======================================== */

.pensee-du-jour {
    background: linear-gradient(135deg, var(--bleu-profond) 0%, var(--vert-foret) 100%);
    color: white;
}

.pensee-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.pensee-card h3 {
    font-family: 'Alpha Brights', sans-serif;
    font-size: 2rem;
    color: var(--or-doux);
    margin-bottom: 30px;
}

.pensee-card p {
    font-size: 1.3rem;
    line-height: 1.9;
    font-style: italic;
}

/* ========================================
   NUMÉROS DU JOUR
   ======================================== */

.numeros-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.numeros-titre {
    font-family: 'Alpha Brights', sans-serif;
    font-size: 1.5rem;
    color: var(--or-doux);
    margin-bottom: 25px;
    text-align: center;
}

#numeros-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.numero-ball {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--or-doux) 0%, var(--beige-chaud) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--bleu-nuit);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: fadeInScale 0.6s ease-out backwards;
    transition: transform 0.3s ease;
}

.numero-ball:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}


/* ========================================
   QUI JE SUIS - LOUIS JR (VERSION AMÉLIORÉE)
   ======================================== */

.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 50px;
    align-items: center;
    max-width: 1600px;
    margin-left: 40px;
    margin-right: 40px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Style amélioré pour tes certifications */

.certifications {
    margin-top: 30px;
    padding: 30px;
    background: var(--blanc-casse);
    border-radius: 15px;
    border-left: 4px solid var(--or-doux);
}

.certifications h4 {
    font-family: 'Viking', serif;
    color: var(--bleu-profond);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.certifications ul {
    list-style: none;
}

.certifications li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
    background: rgba(248, 246, 240, 0.5);
    margin-bottom: 8px;
    border-radius: 8px;
    padding: 12px 12px 12px 35px;
}

.certifications li:before {
    content: "✓";
    position: absolute;
    left: 12px;
    color: var(--vert-sauge);
    font-weight: bold;
    font-size: 1.2rem;
}

.certification-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gris-doux);
    margin-top: 15px;
}


/* ========================================
   SECTION SÉBASTIEN (LAYOUT INVERSÉ)
   ======================================== */

.about-sebastien {
    background: var(--blanc-casse);
}

.about-content-reverse {
    display: grid;
    grid-template-columns: 2fr 1fr;  /* Texte à gauche, photo à droite */
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin-left: 40px;  /* Marge à gauche */
    margin-right: auto; /* Pousse vers la gauche */
}

.experience-list {
    margin-top: 20px;
}

.experience-item {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--or-doux);
    padding: 15px;
    background: rgba(248, 246, 240, 0.5);
    border-radius: 8px;
}

.experience-item strong {
    color: var(--vert-foret);
    display: block;
    margin-bottom: 8px;
}




/* ========================================
   CHEMINEMENTS
   ======================================== */

.cheminements {
    background: var(--blanc-casse);
}

.cheminements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1400px;  /*← AJOUTE ÇA*/
    margin: 0 auto;     /*← ET ÇA*/
}

.cheminement-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--or-doux);
    position: relative; /* Pour le badge */
}

.cheminement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Carte featured (Oracle) avec bordure spéciale */
.card-featured {
    border-top: 4px solid var(--vert-sauge);
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.05) 0%, white 100%);
}

/* Badge EN PRÉPARATION */
.badge-preparation {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.3);
    text-transform: uppercase;
}

.cheminement-card h3 {
    font-family: 'Vicking', serif;
    color: var(--bleu-profond);
    margin-bottom: 15px;
    /* ici 1.8rem originale*/
    font-size: 1.8rem;
}

.cheminement-card h4 {
    font-size: 1.2rem;
    color: var(--vert-sauge);
    margin-bottom: 15px;
}

.cheminement-card p {
    margin-bottom: 20px;
    color: var(--gris-doux);
}

.cheminement-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--vert-foret);
    margin: 20px 0;
}

.cheminement-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--bleu-profond);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.cheminement-btn:hover {
    background: var(--vert-foret);
}

/* Bouton actif (Prendre rendez-vous) */
.cheminement-btn-active {
    background: var(--vert-sauge);
}

.cheminement-btn-active:hover {
    background: var(--vert-foret);
    transform: scale(1.05);
}

/* Bouton désactivé (EN PRÉPARATION) */
.btn-disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-disabled:hover {
    background: #cccccc;
    transform: none;
}

/* ========================================
   SECTION CONTACT - BOUTONS
   ======================================== */

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.contact-btn svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.contact-btn span {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 4px;
}

.contact-btn strong {
    font-size: 1.1rem;
    display: block;
}

.contact-btn small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Couleurs spécifiques */
.contact-email {
    color: var(--bleu-profond);
    border-color: var(--bleu-profond);
}

.contact-email:hover {
    background: var(--bleu-profond);
    color: white;
}

.contact-whatsapp {
    color: #25D366;
    border-color: #25D366;
}

.contact-whatsapp:hover {
    background: #25D366;
    color: white;
}

.contact-messenger {
    color: #0084FF;
    border-color: #0084FF;
}

.contact-messenger:hover {
    background: #0084FF;
    color: white;
}

.contact-facebook {
    color: #1877F2;
    border-color: #1877F2;
}

.contact-facebook:hover {
    background: #1877F2;
    color: white;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--bleu-nuit);
    color: white;
    padding: 60px 20px 30px;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Bouton Fréquences discret */
.freq-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 58, 82, 0.3);
    color: rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
}

.freq-btn:hover {
    background: rgba(26, 58, 82, 0.8);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Numéros plus petits sur mobile */
    .numero-ball {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    #numeros-container {
        gap: 10px;
    }
    
    /* Boutons de contact en colonne sur mobile */
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE POUR SÉBASTIEN */
@media (max-width: 768px) {
    .about-content-reverse {
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-right: 0;
        padding: 0 20px;
    }
}