/* Styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Times New Roman', serif;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background-color: #0a0a0a;
    color: #fff;
}

/* Container principal */
.coming-soon-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Particules en arrière-plan */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Contenu principal */
.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

/* Logo ZAVE */
.logo-container {
    position: relative;
    margin-bottom: 4rem;
}

.zave-logo {
    font-family: 'Times New Roman', serif;
    font-size: 8rem;
    font-weight: 300;
    letter-spacing: 20px;
    color: #fff;
    margin: 0;
    position: relative;
    display: inline-block;
    animation: logoReveal 2s ease-out forwards;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translateY(-50px);
        letter-spacing: 5px;
    }
    50% {
        opacity: 0.5;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 20px;
    }
}

/* Effet de brillance sur le logo */
.logo-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
    z-index: -1;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Texte Coming Soon */
.coming-soon-text {
    margin-bottom: 5rem;
}

.text-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-line {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 12px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    position: relative;
    overflow: hidden;
}

.text-line:first-child {
    animation: slideInFromLeft 1.5s forwards 0.5s;
    opacity: 0;
}

.text-line:last-child {
    animation: slideInFromRight 1.5s forwards 1s;
    opacity: 0;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Formulaire newsletter */
.newsletter-container {
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-out forwards 2s;
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.newsletter-text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Times New Roman', serif;
    font-size: 1.1rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-subscribe {
    padding: 1rem 2rem;
    background-color: #fff;
    color: #0a0a0a;
    border: none;
    font-family: 'Times New Roman', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Réseaux sociaux */
.social-container {
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out forwards 2.5s;
    opacity: 0;
}

.social-icon {
    display: inline-block;
    margin: 0 1rem;
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-5px);
}

/* Bouton de retour */
.back-button-container {
    margin-top: 2rem;
    animation: fadeIn 1s ease-out forwards 3s;
    opacity: 0;
}

.back-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #fff;
    color: #0a0a0a;
}

/* Effet de flottement */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Animation de pulsation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .zave-logo {
        font-size: 5rem;
        letter-spacing: 12px;
    }
    
    .text-line {
        font-size: 2.5rem;
        letter-spacing: 8px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .zave-logo {
        font-size: 3.5rem;
        letter-spacing: 8px;
    }
    
    .text-line {
        font-size: 2rem;
        letter-spacing: 5px;
    }
}

