/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0e27;
    color: white;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

/* Canvas pour l'animation des particules */
#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

/* Container principal */
.container {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

/* Logo JBH en haut */
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rooster-icon {
    font-size: 2rem;
    margin-right: 1rem;
    filter: grayscale(100%) brightness(0) invert(1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.jbh {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
}

.subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Contenu principal */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    justify-content: center;
}

.coming-soon {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

/* Icône centrale */
.center-icon {
    margin: 2rem 0;
    position: relative;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.icon-circle::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.icon-circle::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

.icon-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Description */
.description {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-top: 2rem;
}

/* Footer */
.footer {
    width: 100%;
    text-align: center;
}

.website {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    opacity: 0.7;
}

/* Icône de pause en bas à gauche */
.pause-icon {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pause-icon:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.pause-bars {
    display: flex;
    gap: 3px;
}

.bar {
    width: 4px;
    height: 16px;
    background: white;
    border-radius: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .logo {
        padding: 0.8rem 1.5rem;
    }
    
    .jbh {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-dot {
        width: 8px;
        height: 8px;
    }
}

