/* ----- GLOBAL ----- */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #AD8A8B !important; /* couleur identique à la photo */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}
@media (prefers-color-scheme: dark) {
}

/* ----- MAIN CONTAINER ----- */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* ----- LOGO ----- */
.logo {
    width: 500px;
    max-width: 100%;
}


/* ----- SOCIAL LINKS ----- */
.socials {
    display: flex;
    gap: 25px;
}

.social-link {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

/* ----- CTA BUTTON ----- */
.cta-reserve {
    margin-top: 20px;
    background-color: white;
    color: #b49294;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover effect */
.cta-reserve:hover {
    background-color: #ead5d6;
    color: #8c6d6e;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 600px) {
    .logo {
        width: 260px;
    }

    .cta-reserve {
        font-size: 18px;
        padding: 12px 26px;
    }
}