@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* --- Reseteo Básico y Estilos Globales --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Jost', sans-serif;
    font-weight: 350;
    color: #000;
    background-color: #fff;
    font-size: 18px;
    line-height: 150%;
}

strong {
    font-weight: 500;
}

/* --- Estructura Principal --- */
.waiting-room-container {
    display: flex;
    width: 100svw;
    height: 100svh;
    overflow: hidden;
}

.column {
    width: 50%;
    height: 100%;
    padding: 4vw;
    display: flex;
}

/* --- Columna Izquierda (Contenido) --- */
.column-left {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.content-wrapper {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 2rem;
}

h1 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 24px;
}

.subtitle {
    line-height: 150%;
    margin-bottom: 32px;
}

.queue-status {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.queue-item {
    width: 150px;
    height: 100px;
    padding: 12px 18px;
    background-color: #FFF4F5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.queue-data {
    font-size: 32px;
    line-height: 100%;
}

.instructions .note {
    font-style: italic;
    font-size: 14px;
    margin-top: 24px;
}

.footer p {
    font-size: 10px;
    color: #8D8D8D;
    font-weight: 300;
}

.footer a {
    color: #8D8D8D;
}

/* --- Columna Derecha (Slider) --- */
.column-right {
    justify-content: center;
    align-items: center;
    background-image: url('assets/back.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.glide {
    width: 90%;
    max-width: 500px;
}

.glide__slide img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.glide__bullets {
    bottom: -1em;
}

.glide__bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(254, 155, 169, 0.20);
    box-shadow: none;
    transition: all .2s ease;
    border-radius: 8px;
}

.glide__bullet.glide__bullet--active {
    width: 20px;
    background-color: #FE9BA9 !important;
}

/* --- Responsividad para Móviles --- */
@media (max-width: 768px) {
    body, html {
        height: auto; /* Permite el scroll en móvil */
    }

    .waiting-room-container {
        flex-direction: column;
        height: auto;
        overflow: auto;
    }

    .column {
        width: 100%;
        height: auto;
        padding: 8vw 6vw;
    }

    .column-left {
        justify-content: center;
    }
    
    .column-right {
        padding: 10% 0;
    }
    
    h1 {
        font-size: 28px;
        line-height: 150%;
    }

    .subtitle {
        margin-bottom: 24px;
    }
    
    .queue-status {
        flex-direction: column;
        margin-bottom: 24px;
    }

    .queue-item {
        width: 100%;
    }

    .instructions {
        font-size: 14px;
        line-height: 150%;
    }

    .footer p {
        margin-top: 24px;
        font-size: 8px;
        line-height: 150%;
    }
}