/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #04476E; /* fond bleu */
}

.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 20px;
}

.logo-wrapper img {
    width: 200px;
    max-width: 60%;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.logo-wrapper img:hover {
    transform: scale(1.05);
}

.enter-button {
    display: inline-block;
    background-color: #4B95D1;
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enter-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(255,255,255,0.4);
}

.footer-text {
    position: absolute;
    bottom: 20px;
    font-size: 12px;
    color: #B7B7B7;
}