/*
Theme Name: Twenty Twenty-Five Child - Leevons
Theme URI: https://leevons.com
Description: Thème enfant pour la page Coming Soon Leevons
Author: Ton Nom
Author URI: https://tonsite.com
Template: twentytwentyfive
Version: 1.0.0
Text Domain: twentytwentyfive-child
*/

/* ========================================
   COMING SOON PAGE - LEEVONS
   ======================================== */

/* Reset et base */
.coming-soon-page {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Container principal */
.coming-soon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    overflow: hidden;
}

/* ========================================
   DOTS GRID BACKGROUND
   ======================================== */
.dots-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    opacity: 0.8;             /* ← Augmenté (avant: 0.15) */
    background-image: radial-gradient(circle, #ffffff 2px, transparent 2px);  /* ← Noir au lieu de blanc */
    background-size: 30px 30px;
    pointer-events: none;
}

/* ========================================
   SLIDESHOW IMAGES
   ======================================== */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slideshow-container.active {
    opacity: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========================================
   ANIMATION ZOOM IN & OUT ALTERNÉ
   ======================================== */

/* Zoom In (de 1 à 1.08) */
@keyframes slowZoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

/* Zoom Out (de 1.08 à 1) */
@keyframes slowZoomOut {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

/* Slides impaires (1, 3, 5...) : Zoom In */
.slide:nth-child(odd).active {
    opacity: 1;
    animation: slowZoomIn 4s ease-out forwards;
}

/* Slides paires (2, 4, 6...) : Zoom Out */
.slide:nth-child(even).active {
    opacity: 1;
    animation: slowZoomOut 4s ease-out forwards;
}

/* ========================================
   ANIMATION ZOOM SUBTIL SUR LES SLIDES
   ======================================== */

/* Keyframe pour le zoom progressif */
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);  /* ← Zoom très léger */
    }
}

/* Appliquer sur les slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);  /* ← État initial */
}

/* Animation active sur la slide visible */
.slide.active {
    opacity: 1;
    animation: slowZoom 4s ease-out forwards;  /* ← Durée = CONFIG.slideDuration */
}

/* ===========================================
   LOGOS
   =========================================== */

/* Container logo initial */
.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.logo {
    max-width: 50vw;
    min-width: 300px;
    height: auto;
}

.logo-initial {
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

.logo-initial.fade-out {
    opacity: 0;
}

/* Logos pour le slideshow - DOIVENT RESTER VISIBLES */
.logo-white,
.logo-fullwhite,
.logo-black,
.logo-pink {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 50vw;
    min-width: 300px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}


.logo-white.visible {
    opacity: 1;
}

.logo-fullwhite.visible {
    opacity: 1;
}

.logo-black.visible {
    opacity: 1;
}

.logo-pink.visible {
    opacity: 1;
}

/* ========================================
   COMING SOON SIGNATURE - DUAL COLOR
   ======================================== */
.coming-soon-signature {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: 90%;
    max-width: 400px;
    height: auto;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.coming-soon-signature.visible {
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-signature {
        bottom: 30px;
        max-width: 280px;
    }
    
    .coming-soon-signature.visible {
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .coming-soon-signature {
        bottom: 25px;
        max-width: 200px;
    }
    
    .coming-soon-signature.visible {
        opacity: 0.75;
    }
}

@media (max-width: 360px) {
    .coming-soon-signature {
        bottom: 20px;
        max-width: 160px;
    }
}
        

/* ===========================================
   MENU
   =========================================== */

.coming-soon-menu {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 200;
}

.coming-soon-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.coming-soon-menu li {
    margin: 0;
    padding: 0;
}

.coming-soon-menu a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.coming-soon-menu a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-menu {
        top: 20px;
        left: 20px;
    }
    
    .coming-soon-menu ul {
        gap: 20px;
    }
    
    .coming-soon-menu a {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

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


@media (max-width: 768px) {
    .logo,
    .logo-white,
    .logo-black,
    .logo-pink {
        max-width: 70vw;
        min-width: 200px;
    }
    
    .dots-grid {
        background-size: 20px 20px;
        opacity: 0.8;
    }
    
    .coming-soon-text {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .logo,
    .logo-white,
    .logo-fullwhite,
    .logo-black,
    .logo-pink {
        max-width: 80vw;
        min-width: 150px;
    }
}

/* ========================================
   ANIMATIONS KEYFRAMES
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes subtlePulse {
    0%, 100% { opacity: 0.12; }
    50% { opacity: 0.18; }
}

.dots-grid {
    animation: subtlePulse 8s ease-in-out infinite;
}

/* ========================================
   CONTACT PAGE - LEEVONS
   ======================================== */

.contact-page {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000000;
}

.contact-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu Contact */
.contact-menu {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 200;
}

.contact-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.contact-menu a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.contact-menu a:hover,
.contact-menu a.active {
    opacity: 1;
}

/* Contenu */
.contact-content {
    position: relative;
    z-index: 100;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.contact-email {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 3px;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-email:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Instagram */
.contact-instagram {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 3px;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-instagram:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* ========================================
   CONTACT - RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .contact-menu {
        top: 20px;
        left: 20px;
    }
    
    .contact-menu ul {
        gap: 20px;
    }
    
    .contact-menu a {
        font-size: 10px;
    }
    
    .contact-email,
    .contact-instagram {
        font-size: 14px;
        letter-spacing: 2px;
        padding: 12px 30px;
    }
    
    .contact-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-email,
    .contact-instagram {
        font-size: 12px;
        letter-spacing: 1px;
        padding: 10px 25px;
    }
    
    .contact-content {
        gap: 15px;
    }
}
