* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Page en construction */
.construction-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 50%, #ff5722 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.construction-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.logo-section {
    margin-bottom: 40px;
}

.construction-logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
}

.construction-icon {
    font-size: 100px;
    color: #ff5722;
    margin-bottom: 40px;
    animation: pulse 3s infinite;
    text-shadow: 0 0 30px rgba(255, 87, 34, 0.5);
}

.construction-title {
    font-size: 3.5em;
    color: #333333;
    margin-bottom: 30px;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(51, 51, 51, 0.3);
    letter-spacing: 2px;
}

.construction-subtitle {
    font-size: 1.3em;
    color: #555555;
    margin-bottom: 60px;
    line-height: 1.8;
    font-weight: 300;
}

.construction-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.feature i {
    font-size: 50px;
    color: #ff5722;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 174, 0, 0.5);
}

.feature h3 {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature h3 a:hover {
    color: #ff5722;
}

.feature p {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    font-weight: 300;
}

.construction-contact {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.construction-contact h3 {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
}

.construction-contact p {
    color: #666666;
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffd000;
    text-decoration: none;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 50px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.contact-link:hover {
    background: #ff5722;
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.construction-footer {
    color: #888888;
    font-size: 0.9em;
    font-weight: 300;
}

/* Animation des particules flottantes */
.construction-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gear {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    font-size: 80px;
}

.gear1 {
    top: 15%;
    left: 15%;
    animation: float 6s ease-in-out infinite;
}

.gear2 {
    top: 70%;
    right: 20%;
    animation: float 8s ease-in-out infinite reverse;
}

.gear3 {
    bottom: 25%;
    left: 25%;
    animation: float 7s ease-in-out infinite;
}

/* Nouvelles animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 50px rgba(255, 255, 255, 0.8);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .construction-content {
        padding: 40px 25px;
    }

    .construction-title {
        font-size: 2.5em;
    }

    .construction-subtitle {
        font-size: 1.1em;
    }

    .construction-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .gear {
        font-size: 50px;
    }

    .construction-logo {
        width: 120px;
    }

    .construction-icon {
        font-size: 70px;
    }
}

/* Styles originaux du header (conservés pour plus tard) */

header {
    background: white;
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.logo {
    width: 10%;
}

nav {
    display: flex;
    align-items: center;
}

header ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

header ul li {
    position: relative;
}

header ul li a {
    font-size: 20px;
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    font-family: "Montserrat";
}

header ul li a:hover {
    background-color: #f8f9fa;
    color: #ffd000;
}

/* Styles pour les dropdowns */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    padding: 12px 20px;
    color: #555;
    font-weight: normal;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    background-color: #cccccc;
    color: white;
}

/* Indicateur de dropdown */
.dropdown>a::after {
    content: " ▼";
    font-size: 0.8em;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dropdown:hover>a::after {
    transform: rotate(180deg);
}