* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background-color: #1a221d;
    min-height: 200vh;
    overflow-x: hidden;
}


/* =========================================
   FONAS
   ========================================= */

.background-container {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background-image: url('image_6ff705.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    z-index: -1;
}


/* =========================================
   PAGRINDINIS TURINYS
   ========================================= */

.scroll-content {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 0 5vw;

    text-align: center;
}


/* =========================================
   LOGOTIPO GRUPĖ
   ========================================= */

.logo-group {
    width: 100%;
    max-width: 1200px;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================
   PARALLAX
   ========================================= */

.parallax-text {
    transition: transform 0.1s ease-out;
}


/* =========================================
   GELTONOS LINIJOS
   ========================================= */

.yellow-line {
    width: clamp(100px, 18vw, 260px);
    height: 2px;

    background-color: #e5a93b;

    margin: clamp(12px, 2vw, 20px) 0;
}


/* =========================================
   PAGRINDINIS LOGOTIPAS
   ========================================= */

.main-title {
    width: 100%;

    /*
       Šriftas automatiškai prisitaiko
       prie ekrano pločio.
    */
    font-size: clamp(3rem, 8vw, 6.5rem);

    font-weight: 400;

    letter-spacing: -2px;
    line-height: 1;

    margin: clamp(10px, 2vw, 20px) 0;

    /*
       Logotipas turi likti vienoje eilutėje.
    */
    white-space: nowrap;
}


/* =========================================
   GELTONAS TEKSTAS
   ========================================= */

.yellow-text {
    color: #e5a93b;
    font-weight: 400;
}


/* =========================================
   POANTRAŠTĖ
   ========================================= */

.subtitle {
    max-width: 90vw;

    font-size: clamp(1rem, 2.5vw, 2.2rem);

    font-weight: 300;

    letter-spacing: clamp(1px, 0.3vw, 3px);

    line-height: 1.4;

    color: #ffffff;

    margin: clamp(10px, 2vw, 15px) 0;
}


/* =========================================
   TELEFONAI
   iki 600 px
   ========================================= */

@media (max-width: 600px) {

    .background-container {
        /*
           Telefonuose foną šiek tiek
           pastumiame į dešinę, kad
           matytųsi avilys ir bitė.
        */
        background-position: 62% center;
    }


    .scroll-content {
        min-height: 100vh;

        padding-left: 15px;
        padding-right: 15px;
    }


    .logo-group {
        width: 100%;
        max-width: 100%;
    }


    /* LOGOTIPAS */

    .main-title {

        /*
           11vw reiškia, kad šriftas
           automatiškai priklauso nuo
           telefono pločio.

           Pvz.:
           320 px -> ~35 px
           375 px -> ~41 px
           430 px -> ~47 px
        */
        font-size: 11vw;

        letter-spacing: -1.5px;

        line-height: 1;

        white-space: nowrap;

        margin-top: 12px;
        margin-bottom: 12px;
    }


    /* POANTRAŠTĖ */

    .subtitle {

        font-size: 4vw;

        letter-spacing: 0.8px;

        line-height: 1.4;

        max-width: 95%;

        margin-top: 12px;
        margin-bottom: 12px;
    }


    /* LINIJOS */

    .yellow-line {

        width: 25vw;

        max-width: 130px;
        min-width: 70px;

        height: 2px;

        margin-top: 12px;
        margin-bottom: 12px;
    }
}


/* =========================================
   LABAI MAŽI TELEFONAI
   iki 380 px
   ========================================= */

@media (max-width: 380px) {

    .main-title {

        /*
           Mažiems telefonams dar
           šiek tiek sumažiname.
        */
        font-size: 10.5vw;

        letter-spacing: -1.2px;
    }


    .subtitle {

        font-size: 3.8vw;

        letter-spacing: 0.5px;

        max-width: 100%;
    }


    .yellow-line {

        width: 24vw;

        min-width: 65px;
    }
}


/* =========================================
   PLANŠETĖS
   601–1000 px
   ========================================= */

@media (min-width: 601px) and (max-width: 1000px) {

    .main-title {
        font-size: 8vw;
    }


    .subtitle {
        font-size: 2.5vw;
    }
}


/* =========================================
   DIDELI MONITORIAI
   nuo 1600 px
   ========================================= */

@media (min-width: 1600px) {

    .main-title {
        font-size: 7rem;
    }


    .subtitle {
        font-size: 2.3rem;
    }
}