/* =========================================================
   TRAVELUX NICARAGUA
   Coming Soon
   ========================================================= */


/* =========================================================
   1. FUENTES TRAVELUX
   ========================================================= */

@font-face {
    font-family: "Century Gothic";
    src: url("fonts/CenturyGothic.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}


/* =========================================================
   2. VARIABLES DE MARCA
   ========================================================= */

:root {
    --azul-travelux: #182038;
    --dorado-travelux: #EFBF04;
    --arena: #e6dbc7;
    --blanco: #f7f3ed;
    --grafito: #1c1c1c;
}


/* =========================================================
   3. RESET BÁSICO
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================
   4. BODY
   ========================================================= */

body {
    min-height: 100vh;

    overflow: hidden;

    font-family: "Century Gothic", sans-serif;

    color: var(--blanco);

    background:
        linear-gradient(
            rgba(24, 32, 56, 0.88),
            rgba(24, 32, 56, 0.94)
        ),
        url("images/travelux-bg.jpg");

    background-size: cover;
    background-position: center;

    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 30px 20px;

    position: relative;
}


/* =========================================================
   5. CONTENEDOR PRINCIPAL
   ========================================================= */

.coming-soon {
    width: 100%;
    max-width: 1100px;

    min-height: calc(100vh - 60px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   6. LOGO
   ========================================================= */

.logo {
    width: 320px;
    max-width: 80%;

    height: auto;

    display: block;

    margin-bottom: 45px;

    animation:
        aparecer 1s ease forwards;
}


/* =========================================================
   7. CONTENIDO PRINCIPAL
   ========================================================= */

.content {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    animation:
        aparecer 1s ease 0.4s forwards;

    opacity: 0;
}


/* =========================================================
   8. TÍTULO PRINCIPAL
   ========================================================= */

h1 {
    width: 100%;
    max-width: 900px;

    margin: 0;

    font-family: "Century Gothic", sans-serif;

    font-size: clamp(48px, 5vw, 76px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -1px;

    color: var(--blanco);

    text-align: center;
}


/* Parte dorada del título */

h1 span {
    color: var(--dorado-travelux);
}


/* =========================================================
   9. SEPARADOR DECORATIVO
   ========================================================= */

.divider {
    width: 320px;
    max-width: 70%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    margin: 14px 0 18px;
}


/* Líneas */

.divider span:not(.star) {
    height: 1px;

    flex: 1;

    background: var(--dorado-travelux);

    opacity: 0.8;
}


/* Estrella central */

.divider .star {
    color: var(--dorado-travelux);

    font-size: 24px;

    line-height: 1;
}


/* =========================================================
   10. TEXTO DESCRIPTIVO
   ========================================================= */

.content p {
    max-width: 700px;

    margin: 0 0 34px;

    font-family: "Montserrat", sans-serif;

    font-size: 19px;

    font-weight: 300;

    line-height: 1.6;

    color: var(--blanco);

    text-align: center;
}


/* Palabra Travelux dentro del párrafo */

.content p span {
    color: var(--dorado-travelux);
}


/* =========================================================
   11. CONTENEDOR DE BOTONES
   ========================================================= */

.buttons {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 22px;
}


/* =========================================================
   12. BOTONES
   ========================================================= */

.button {
    min-width: 260px;

    padding: 17px 30px;

    border-radius: 14px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    text-decoration: none;

    font-family: "Century Gothic", sans-serif;

    font-size: 17px;

    font-weight: 600;

    line-height: 1;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;

    cursor: pointer;
}


/* =========================================================
   13. ICONOS DE LOS BOTONES
   ========================================================= */

.button svg {
    width: 23px;
    height: 23px;

    flex-shrink: 0;
}


/* WhatsApp */

.button.whatsapp svg {
    fill: currentColor;
}


/* Correo */

.button.contact svg {
    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;
}


/* =========================================================
   14. BOTÓN WHATSAPP
   ========================================================= */

.button.whatsapp {
    background: var(--dorado-travelux);

    color: var(--azul-travelux);

    border: 1px solid var(--dorado-travelux);

    box-shadow:
        0 10px 25px rgba(239, 191, 4, 0.18);
}


/* =========================================================
   15. BOTÓN CONTACTO
   ========================================================= */

.button.contact {
    background: transparent;

    color: var(--blanco);

    border: 1px solid var(--dorado-travelux);
}


/* =========================================================
   16. HOVER DE BOTONES
   ========================================================= */

.button:hover {
    transform: translateY(-3px);
}

.button:focus-visible {
    outline: 3px solid var(--dorado-travelux);
    outline-offset: 5px;
}


/* Hover WhatsApp */

.button.whatsapp:hover {
    box-shadow:
        0 14px 32px rgba(239, 191, 4, 0.30);
}


/* Hover Contacto */

.button.contact:hover {
    background: var(--dorado-travelux);

    color: var(--azul-travelux);

    box-shadow:
        0 14px 32px rgba(239, 191, 4, 0.22);
}


/* =========================================================
   17. IDENTIFICACIÓN INFERIOR
   ========================================================= */

.location {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 38px;

    font-family: "Montserrat", sans-serif;

    font-size: 15px;

    font-weight: 300;

    letter-spacing: 4px;

    color: var(--blanco);

    opacity: 0.9;
}


/* Estrella inferior */

.location-star {
    color: var(--dorado-travelux);

    font-size: 20px;

    line-height: 1;
}


/* =========================================================
   18. ANIMACIÓN DE ENTRADA
   ========================================================= */

@keyframes aparecer {

    from {
        opacity: 0;

        transform:
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   19. TABLET
   ========================================================= */

@media (max-width: 900px) {

    body {
        padding: 35px 20px;
    }


    .logo {
        width: 280px;

        margin-bottom: 30px;
    }


    h1 {
        font-size: clamp(42px, 7vw, 64px);
    }


    .content p {
        max-width: 600px;

        font-size: 18px;
    }


    .button {
        min-width: 230px;
    }

}


/* =========================================================
   20. MÓVIL
   ========================================================= */

@media (max-width: 768px) {

    body {
        height: auto;

        min-height: 100vh;

        overflow: auto;

        padding: 30px 20px;
    }


    .coming-soon {
        min-height: calc(100vh - 60px);
    }


    .logo {
        width: 250px;

        max-width: 78%;

        margin-bottom: 28px;
    }


    h1 {
        max-width: 500px;

        font-size: clamp(38px, 9vw, 52px);

        line-height: 1.1;

        letter-spacing: -0.5px;
    }


    .divider {
        width: 260px;

        gap: 20px;

        margin: 18px 0 24px;
    }


    .divider .star {
        font-size: 21px;
    }


    .content p {
        max-width: 500px;

        font-size: 17px;

        line-height: 1.55;

        margin-bottom: 30px;
    }


    .buttons {
        flex-direction: column;

        gap: 14px;
    }


    .button {
        width: min(100%, 360px);

        min-width: 0;

        padding: 16px 24px;

        font-size: 16px;
    }


    .location {
        margin-top: 32px;

        font-size: 13px;

        letter-spacing: 3px;
    }

}


/* =========================================================
   21. MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 480px) {

    body {
        padding: 25px 18px;
    }


    .coming-soon {
        min-height: calc(100vh - 50px);
    }


    .logo {
        width: 220px;

        max-width: 82%;

        margin-bottom: 25px;
    }


    h1 {
        font-size: clamp(34px, 10vw, 46px);

        line-height: 1.08;
    }


    .divider {
        width: 220px;

        gap: 16px;

        margin: 16px 0 22px;
    }


    .divider .star {
        font-size: 19px;
    }


    .content p {
        font-size: 16px;

        line-height: 1.5;

        margin-bottom: 27px;
    }


    .button {
        width: 100%;

        max-width: 340px;

        padding: 15px 20px;

        font-size: 15px;

        gap: 10px;
    }


    .button svg {
        width: 21px;
        height: 21px;
    }


    .location {
        margin-top: 28px;

        font-size: 12px;

        letter-spacing: 2.5px;
    }


    .location-star {
        font-size: 17px;
    }

}