
:root {
    --black: #000000;
    --gold: #FFD700;
    --neon-blue: #0ff0fc;
    --neon-pink: #ff00ff;
    --dark-gray: #0a0a0a;
    --medium-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --glow: 0 0 10px rgba(255, 215, 0, 0.8);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Effets de lumière futuristes */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.03) 0%, transparent 25%);
    pointer-events: none;
    z-index: -1;
}

/* Animation de fond high-tech */
@keyframes grid-pulse {
    0% { opacity: 0.03; }
    50% { opacity: 0.1; }
    100% { opacity: 0.03; }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,215,0,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,215,0,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-pulse 8s infinite alternate;
    pointer-events: none;
    z-index: -1;
}

/* Typographie futuriste */
h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.gold-text {
    color: var(--gold);
}

.gold-bg {
    background: var(--gold);
    color: var(--black);
}


.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.wolf-loader {
    width: 100px;
    height: 100px;
    position: relative;
}

@keyframes blink {
    0%, 45%, 55%, 100% { height: 20px; top: 40px; }
    50% { height: 5px; top: 45px; }
}

@keyframes glow {
    from { box-shadow: 0 0 5px var(--gold); }
    to { box-shadow: 0 0 20px var(--gold); }
}


.glass-nav {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--neon-blue));
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Burger Menu Styles */
.burger {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.burger .line {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .burger {
        display: block;
    }
    
     .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 998;
        margin: 0;
        padding: 0;
        border-left: 1px solid var(--gold);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        padding: 1rem;
        display: block;
        width: 100%;
    }

    
     /* Animation burger */
    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.active .line2 {
        opacity: 0;
    }
    
    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Animation liens */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Empêcher le scroll quand menu ouvert */
body.no-scroll {
    overflow: hidden;
}

.parallax-bg {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}


.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.9) 70%),
                linear-gradient(to bottom, rgba(255,215,0,0.2) 0%, transparent 50%);
    z-index: 0;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}


.glitch {
    position: relative;
    animation: glitch-skew 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    mix-blend-mode: screen;
}

.glitch::before {
    color: var(--neon-pink);
    animation: glitch-effect 2s infinite linear alternate;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}


.glitch::after {
    color: var(--neon-pink);
    animation: glitch-effect 2s infinite linear alternate;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}


@keyframes glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-5px, 5px); }
    40% { transform: translate(-5px, -5px); }
    60% { transform: translate(5px, 5px); }
    80% { transform: translate(5px, -5px); }
    100% { transform: translate(0); }
}



@keyframes glitch-skew {
    0%, 40%, 44%, 60%, 64%, 80%, 84%, 100% { transform: skew(0deg); }
    41% { transform: skew(5deg); }
    43% { transform: skew(-5deg); }
    61% { transform: skew(10deg); }
    63% { transform: skew(-10deg); }
    81% { transform: skew(5deg); }
    83% { transform: skew(-5deg); }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}


.cta-button {
    background: #FFD700;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: #000;
    color: #FFD700;
    border-color: #FFD700;
}

.cta-button.outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}




.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 15px;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}


.formations-section {
    padding: 5rem 2rem;
    background: var(--dark-gray);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title span {
    display: inline-block;
    padding: 0 20px;
    position: relative;
}

.section-title span::before, .section-title span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.section-title span::before {
    right: 100%;
}

.section-title span::after {
    left: 100%;
}

.formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.formation-card {
    perspective: 1000px;
    height: 800px;
        border: none !important;
    background: linear-gradient(145deg, #121212, #1a1a1a);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                inset 0 0 15px rgba(255, 215, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.formation-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3),
                inset 0 0 20px rgba(255, 215, 0, 0.2);
}

.formation-card .card-content {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.formation-card:hover .card-content {
    transform: rotateY(180deg);
}



.formation-card .card-front {
background-image: url("../../images/cover-1.png");
    background-size: cover;
    border: 1px solid var(--gold);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.formation-card.advanced .card-front {
background-image: url("../../images/Cover-2.png");
}

.card-front .card-text {
    padding: 16px;
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;

}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-front .card-text::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
}

.card-back {
    background: var(--light-gray);
    transform: rotateY(180deg);
    border: 1px solid var(--gold);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.formation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 0 !important;
    font-size: 1.8rem;
    margin: 1rem 0;
    font-weight: bold;
}

.card-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    width: 100%;
}

.card-button {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card-button i {
    font-size: 1.2rem;
}

.card-button.whatsapp {
    background: var(--whatsapp);
}

.card-button:not(.whatsapp) {
    background: var(--gold);
    color: var(--black);
}

.card-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.footer-section {
    background: var(--black);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
      position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--gold);
}

.footer-copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}



@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.5s ease;
        z-index: 999; /* Pour s'assurer qu'il est au-dessus des autres éléments */
    }
    
    .nav-links.active {
        left: 0;
    }

.nav-links li {
    margin: 1.5rem 0;
}

    .burger {
        display: block;
    }

    .burger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active .line:nth-child(2) {
        opacity: 0;
    }

    .burger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

  /* Effets néon pour les boutons */
.cta-button, .card-button {
    position: relative;
    overflow: hidden;
    border: none !important;
    background: linear-gradient(90deg, var(--gold), #ffaa00) !important;
    color: #000 !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.cta-button::before, .card-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0.3) 0%,
        rgba(255,255,255,0) 60%
    );
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.cta-button:hover::before, .card-button:hover::before {
    transform: translateY(100%) rotate(30deg);
}


    .formation-card {
        height: 350px;
    }
}


.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.header-logo {
    height: 1em; 
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: rotate(10deg) scale(1.1);
}


@media (max-width: 768px) {
    .title-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-logo {
        height: 60px; 
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 40px; 
    width: auto;
    transition: transform 0.3s ease;
}


.logo-container:hover .nav-logo {
    transform: rotate(15deg);
}


@media (max-width: 768px) {
    .nav-logo {
        height: 30px;
    }
}


.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: white;

        position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-button:hover::after {
    opacity: 1;
}

.social-button.whatsapp {
    background-color: #25D366;
}

.social-button.instagram {
    background: radial-gradient(circle at 30% 107%, 
        #fdf497 0%, #fdf497 5%, 
        #fd5949 45%, #d6249f 60%, 
        #285AEB 90%);
}

.social-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.social-button.tiktok {
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.social-button.tiktok::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        #25F4EE 0%,
        #000000 30%,
        #000000 70%,
        #FE2C55 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-button.tiktok:hover::before {
    opacity: 1;
}

.social-button.tiktok i {
    position: relative;
    z-index: 1;
}


.social-button.youtube {
    background-color: #FF0000; 
    position: relative;
    transition: all 0.3s ease;
}

.social-button.youtube:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}


.social-button.youtube::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    opacity: 0;
}

.social-button.youtube:hover::after {
    opacity: 1;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    70% { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(1.2); opacity: 0; }
}


.about-section {
    padding: 5rem 2rem;
    background-color: #0a0a0a;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.separator {
    width: 100px;
    height: 3px;
    background: var(--gold);
    margin: 1rem 0 2rem;
}

.about-highlights {
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.about-quote {
    font-style: italic;
    padding: 1.5rem;
    border-left: 3px solid var(--gold);
    background: rgba(255, 215, 0, 0.05);
    margin-top: 2rem;
}


@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: 2;
        margin-top: 2rem;
    }
}



.logo-glow {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}


.shining-logo {
    height: 120px;
    width: auto;
    animation: glow-pulse 2s infinite alternate;
    transform-origin: center;
}




.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-container {
    text-align: center;
}

.loader-logo {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite alternate;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,215,0,0.2);
    border-top-color: #FFD700;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}



@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .loader-logo {
        width: 60px;
    }
}


@media (min-width: 481px) and (max-width: 1024px) {
    .formation-card {
        width: 90%;
        margin: 1rem auto;
    }
}

.testimonials-auto {
    background: linear-gradient(to right, #0a0a0a, #121212, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.testimonials-flow {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 60s linear infinite;
    padding: 2rem 0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    min-width: 300px;
    background: #121212;
    border-left: 3px solid #FFD700;
    padding: 1.5rem;
    flex-shrink: 0;
}


.testimonials-auto::before,
.testimonials-auto::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.testimonials-auto::before {
    left: 0;
    background: linear-gradient(to right, #0d0d0d, transparent);
}

.testimonials-auto::after {
    right: 0;
    background: linear-gradient(to left, #0d0d0d, transparent);
}





.member-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

#login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

#login-form input {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #333;
    background: #222;
    color: white;
}

#login-form button {
    padding: 12px;
    background: #FFD700;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#login-message {
    margin-top: 1rem;
    color: #ff5555;
    text-align: center;
}

.video-item, .pdf-item {
    margin: 1rem 0;
    padding: 1rem;
    background: #222;
    border-radius: 5px;
}

.video-item iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.pdf-item a {
    color: #FFD700;
    text-decoration: none;
}

.pdf-item a:hover {
    text-decoration: underline;
}




.premium-construction-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    padding: 25px;
    z-index: 9999;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1s;
}

.construction-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
}

.wolf-icon {
    font-size: 28px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 5px rgba(255, 165, 0, 0.5));
}

.construction-header h3 {
    color: #FFF;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 1px;
}

.construction-header h3 span {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    font-weight: bold;
}

.construction-body p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.progress-container {
    margin: 25px 0;
    position: relative;
}

.progress-bar {
    height: 8px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    animation: progressShine 2.5s infinite;
}

.progress-container span {
    position: absolute;
    right: 0;
    top: -25px;
    color: #FFD700;
    font-size: 1rem;
    font-weight: bold;
}

.highlight {
    color: #FFF !important;
    font-weight: 500;
    margin: 25px 0 20px !important;
    text-align: center;
    position: relative;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 6px;
     font-size: 1.1rem;
}

.highlight strong {
    color: #FFD700;
    font-weight: 700;
}

.gold-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000 !important;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
     font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.gold-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.gold-button i {
    font-size: 1.4rem;
}

.construction-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.1) 0%, 
        transparent 70%);
    z-index: -1;
}


@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.gold-button:hover {
    animation: pulseGold 1.5s infinite;
}


.close-banner {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
}

.close-banner:hover {
    color: #FFD700;
}


.reopen-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
}

.reopen-banner:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}


.banner-closing {
    animation: slideDown 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

@keyframes slideDown {
    to {
        transform: translateY(100px);
        opacity: 0;
        display: none;
    }
}





.video-presentation {
    padding: 5rem 2rem;
    background: var(--dark-gray);
    position: relative;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    margin-top: 2rem;
    border: 2px solid var(--gold);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.video-presentation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.video-presentation.visible {
    opacity: 1;
    transform: translateY(0);
}






.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: #333;
    color: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.toast-notification.success {
    background: #4CAF50;
}

.toast-notification.error {
    background: #F44336;
}

.toast-notification.warning {
    background: #FF9800;
}



body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}




.cta-button, .card-button, .gold-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after, .card-button::after, .gold-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
        rgba(255,255,255,0.3) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover::after, .card-button:hover::after, .gold-button:hover::after {
    opacity: 1;
}


.page-transition-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}



.formation-card {
    position: relative;
    overflow: hidden;
}

.formation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 215, 0, 0.1),
        transparent 40%
    );
    pointer-events: none;
    z-index: 1;
}




input.error, textarea.error {
    border-color: #F44336 !important;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}








/* Nouveaux styles pour les animations futuristes des formations */
.formations-section {
    position: relative;
    overflow: hidden;
}

.formations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.02) 0%, transparent 25%);
    pointer-events: none;
    z-index: 0;
}

.formation-card {
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.formation-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--gold), 
        var(--neon-blue), 
        var(--gold));
    background-size: 200% 200%;
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.5s, background-position 3s;
    animation: gradientShift 4s linear infinite;
}

.formation-card:hover::after {
    opacity: 0.7;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.card-badge {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.card-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0.3) 0%,
        rgba(255,255,255,0) 60%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

/* Effet de scanlines pour le fond des cartes */
.card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(255,215,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,215,0,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* Animation de lueur pour le titre */
.section-title span {
    position: relative;
}

.section-title:hover span::after {
    opacity: 1;
}



/* Styles pour les particules */
.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 10px;
    z-index: 0;
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 10s infinite linear;
    filter: blur(1px);
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}




@keyframes navFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}






html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
}






/* Section Contact Futuriste */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a0a0a, #121212);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

.info-item i {
    font-size: 1.5rem;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0 5px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--neon-blue));
    transition: width 0.4s ease;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: 0;
    font-size: 0.8rem;
    color: var(--gold);
}

.form-group input:focus ~ .underline,
.form-group textarea:focus ~ .underline {
    width: 100%;
}

.contact-form button {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    margin-top: 1rem;
}

.contact-form button i {
    transition: transform 0.3s ease;
}

.contact-form button:hover i {
    transform: translateX(5px);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
    display: block;
}

.contact-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Animation des particules de contact */
@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1.2);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}



