/* ===== FIXED HEADER ===== */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
}

body {
    padding-top: 65px !important;
}

/* ===== PAGE EN CONSTRUCTION ===== */
body {
    background: linear-gradient(135deg, #0a0a0a 0%, #2d1a3d 100%) !important;
}

.page-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: transparent !important;
    margin-top: 0 !important;
}

.construction-hero {
    width: 100%;
}

.construction-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

/* ===== ICÔNE ANIMÉE ===== */
.construction-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    color: #ec4899;
    animation: bounce 2s ease-in-out infinite;
}

.construction-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.4));
}

/* ===== TITRE ET SOUS-TITRE ===== */
.construction-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.construction-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    color: #aaaaaa;
    margin: 0 0 40px 0;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ===== DESCRIPTION ===== */
.construction-description {
    margin: 40px 0;
}

.construction-description p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 15px 0;
}

/* ===== FEATURES ===== */
.construction-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-item {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 63, 94, 0.1));
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.feature-item:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(244, 63, 94, 0.2));
    border-color: rgba(236, 72, 153, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin: 15px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: #aaaaaa;
    margin: 0;
}

/* ===== BOUTON CTA ===== */
.construction-cta {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.4);
}

.construction-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.6);
}

.construction-cta:active {
    transform: translateY(-1px);
}

/* ===== ANIMATION DE CHARGEMENT ===== */
.construction-animation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ec4899;
    animation: pulse 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        padding-top: 60px !important;
    }

    .construction-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .construction-subtitle {
        font-size: 1.1rem;
    }

    .construction-description p {
        font-size: 1rem;
    }

    .construction-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .construction-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 55px !important;
    }

    .construction-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .construction-subtitle {
        font-size: 0.95rem;
    }

    .construction-cta {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-item h3 {
        font-size: 1rem;
    }
}

/* ===== VARIANTES PAR PAGE ===== */

/* ANNIVERSAIRE - Rose/Pink */
body.page-anniversaire {
    background: linear-gradient(135deg, #0a0a0a 0%, #2d1a3d 100%) !important;
}

body.page-anniversaire .construction-icon {
    color: #ec4899;
}

body.page-anniversaire .construction-icon svg {
    filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.4));
}

body.page-anniversaire .construction-title {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.page-anniversaire .feature-item {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 63, 94, 0.1));
    border: 2px solid rgba(236, 72, 153, 0.3);
}

body.page-anniversaire .feature-item:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

body.page-anniversaire .construction-cta {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.4);
}

body.page-anniversaire .construction-cta:hover {
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.6);
}

/* TEAM-BUILDING - Purple */
body.page-team-building {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%) !important;
}

body.page-team-building .construction-icon {
    color: #8B5CF6;
}

body.page-team-building .construction-icon svg {
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

body.page-team-building .construction-title {
    background: linear-gradient(135deg, #8B5CF6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.page-team-building .feature-item {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
}

body.page-team-building .feature-item:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

body.page-team-building .construction-cta {
    background: linear-gradient(135deg, #8B5CF6, #ec4899);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

body.page-team-building .construction-cta:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

body.page-team-building .dot {
    background: #8B5CF6;
}