@import url('https://fonts.googleapis.com/css2?family=Monsieur+La+Doulaise&display=swap');


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   DOCUMENTO
========================= */

html,
body {
    width: 100%;
    height: 100%;
}


body {
    width: 100%;
    min-height: 100vh;

    background-color: #000000;

    overflow: hidden;
}


/* =========================
   CONTENEDOR PRINCIPAL
========================= */

.hero {
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
}


/* =========================
   LOGO
========================= */

.logo {
    width: 400px;
    max-width: 85vw;

    height: auto;

    object-fit: contain;

    display: block;

    margin-bottom: 30px;

    z-index: 2;
}


/* =========================
   IMAGEN PRINCIPAL
========================= */

.main-image {
    width: 1000px;
    max-width: 95vw;

    height: auto;
    max-height: 65vh;

    object-fit: contain;

    display: block;

    border-radius: 35px;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* =========================
   SELECTOR DE IDIOMA
========================= */

.language-selector {
    margin-top: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    color: #555555;
}


/* =========================
   BOTONES DE IDIOMA
========================= */

.language-btn {
    padding: 5px;

    background: transparent;
    border: none;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


.language-btn:hover {
    color: #ffffff;
}


.language-btn.active {
    color: #ffffff;
}


.separator {
    color: #444444;

    user-select: none;
}


/* =========================
   BESITZCLOUD
========================= */

.besitzcloud-link {
    margin-top: 60px;

    color: #ffffff;

    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 38px;
    font-weight: 400;

    text-decoration: none;

    display: inline-block;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


.besitzcloud-link:hover {
    opacity: 0.65;

    transform: scale(1.03);
}


/* =========================
   TABLETS
========================= */

@media (max-width: 1024px) {

    .logo {
        width: 320px;
        max-width: 80vw;

        margin-bottom: 25px;
    }


    .main-image {
        width: 800px;
        max-width: 95vw;

        max-height: 60vh;

        border-radius: 30px;
    }


    .besitzcloud-link {
        margin-top: 70px;

        font-size: 34px;
    }
}


/* =========================
   MÓVILES
========================= */

@media (max-width: 768px) {

    .hero {
        padding: 20px;
    }


    .logo {
        width: 250px;
        max-width: 80vw;

        margin-bottom: 20px;
    }


    .main-image {
        width: 100%;
        max-width: 95vw;

        max-height: 55vh;

        border-radius: 25px;
    }


    .language-selector {
        margin-top: 15px;
    }


    .besitzcloud-link {
        margin-top: 55px;

        font-size: 30px;
    }
}


/* =========================
   MÓVILES PEQUEÑOS
========================= */

@media (max-width: 480px) {

    .hero {
        padding: 15px;
    }


    .logo {
        width: 200px;

        margin-bottom: 15px;
    }


    .main-image {
        width: 100%;

        max-height: 50vh;

        border-radius: 20px;
    }


    .language-selector {
        margin-top: 12px;

        font-size: 13px;
    }


    .language-btn {
        font-size: 13px;
    }


    .besitzcloud-link {
        margin-top: 45px;

        font-size: 28px;
    }
}