/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
    min-height: 100vh;
}

/* Header */
header {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
}



.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin-left: 20px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.menu a:hover {
    color: #007bff;
}
h2{
text-align: center;
margin:20px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        transition: all 0.3s ease-in-out;
    }

    .menu li {
        margin: 10px 0;
    }

    .menu-icon {
        display: block;
    }
    .section {
     flex-direction: column;
    }
}
/* Nouvelle Section - Message et Fusée */
#thank-you {
    background: linear-gradient(to right, #170d5e, #004588);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 20px;
    color: #fff; /* Texte en blanc */
}

.thank-you-content {
    text-align: center;
}

.message {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #fff; /* Assure que le texte est en blanc */
}

.rocket-icon {
    font-size: 3em;
    animation: fly 2s infinite ease-in-out;
    color: #fff; /* Assure que l'icône de fusée est en blanc */
}

@keyframes fly {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
.img-fluid{
   max-width: 100%;
    height: auto;

}
/* Sections */
.section {
  
    padding: 50px 20px;
    text-align: center;
    display: flex;
    justify-content: space-around;
     align-items: center;
}
@media (min-width: 1200px){
    .section {
  
    height: 100vh;
}
}

.construction-message {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: bolder;
    color: #170d5e;
}

.construction-gif {
    max-width: 100%;
    height: auto;
}

/* Animation Styles */
#typing-text {
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #007bff;
    font-size: 1.2em;
}

/* Footer avec dégradé */
footer {
    background: linear-gradient(to right, #ec1c24, #f26b21);
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 1em;
}