/* style.css */
:root {
    /* Couleurs principales */
    --primary-color: #1a365d;
    --secondary-color: #2d4f8b;
    --accent-color: #e6af2e;
    --accent-light: #f4c542;
    --text-color: #f8f9fa;
    --text-secondary: #cbd5e0;
    --background-dark: #0f172a;
    --background-light: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Typographie */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Espacements */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Bordures */
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Styles généraux */
body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--primary-color) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.maintenance-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg);
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: var(--space-xl);
    animation: fadeInDown 1s ease-out;
}

.logo-container {
    display: inline-block;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.logo-text {
    color: var(--text-color);
}

.logo-highlight {
    color: var(--accent-color);
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
    transform: scaleX(0.9);
}

.logo-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 1.5px;
}

/* Contenu principal */
.main-content {
    background-color: var(--background-light);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.maintenance-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: var(--space-lg);
    animation: rotate 4s linear infinite;
}

.main-title {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    margin-bottom: var(--space-md);
    color: var(--text-color);
    font-weight: 600;
}

.main-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

/* Compte à rebours */
.countdown-container {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.countdown-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-color);
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-secondary);
    text-shadow: 0 0 15px rgba(230, 175, 46, 0.3);
    line-height: 1;
    min-width: 100px;
    padding: var(--space-sm);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.countdown-value:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: -1rem;
}

.countdown-info {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Barre de progression */
.progress-container {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    color: var(--text-color);
}

.progress-bar {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 6px;
    position: relative;
    transition: width 1s ease;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Description */
.description-container {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-color);
}

.description-title {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.description-title i {
    color: var(--accent-color);
}

.description-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    text-align: justify;
}

.description-text strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border-color);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.contact-title {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: var(--space-lg);
    color: var(--text-color);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(230, 175, 46, 0.1);
    border-radius: 50%;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: var(--text-color);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
}

.copyright {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-color);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Animations de fond */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 15s infinite linear;
}

.element-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.element-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 25s;
}

.element-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.element-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.element-5 {
    top: 40%;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 30s;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateY(10px) translateX(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-10px) translateX(-5px) rotate(3deg);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Ajoutez cette animation à la fin du fichier style.css */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        color: #e6af2e;
    }
    50% {
        transform: scale(1.2);
        color: #ff9900;
    }
}