body {
    margin: 0;
    padding: 0;
    font-family: Lato, sans-serif;
    overflow-x: hidden; /* Pour éviter le défilement horizontal */
    background-color: rgb(0, 0, 0);
}

html {
    scroll-behavior: smooth;
}

a {
    color: white;
    text-decoration: none;
}

a:visited {
    color: white;
}

.flex {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-container {
    width: 100vw;
    height: 200vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image {
    background-image: url('./assets/BG.png'); /* Image par défaut */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    transition: height 0.3s ease-in-out;
}

.container-ticket {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.yurplan-widget-container {
    width: 70vw;
    height: auto ;
    border: 1px solid #283D94; /* Ajouter une bordure personnalisée */
    border-radius: 30px; /* Arrondir les bords */
    background-color: #ffffff; /* Couleur de fond derrière le widget */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Effet d'ombre */
    padding: 20px;
}

.button-container {
    margin-top: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.button {
    background-color: #f4371a;
    color: white;
    border-radius: 30px;
    padding: 10px 25px 10px 24px;
    font-family: Helvetica, sans-serif;
    border: 1px solid #f4371a;
    font-size: 16px;
    cursor: pointer;
    animation: glide 2s infinite;
}

.button:hover {
    background-color: #d93016;
}

.arrow {
    margin-top: 100px;
}

.container-socials-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.socials-links img {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

.socials-links img:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .image {
        background-image: url('./assets/BG_VERSION_MOBILE.png'); /* Image pour mobile */
        background-position: top;
    }
    
    .yurplan-widget-container {
        padding: 10px;
    }

    .container-socials-links {
        gap: 10px;
    }

    .button-container {
        margin-top: 0px;
    }
    

    .button {
        font-size: 14px;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .button-container {
        margin-top: 0px;
    }
    
    .button {
        font-size: 12px;
        padding: 8px 15px;
    }

    .container-socials-links img {
        width: 30px;
    }
}