/* ==========================================
   TALITHA GLOBAL
   Coming Soon
========================================== */

:root {

    --sand: #F5EFE6;
    --blue: #4A607A;
    --blush: #E8D3D1;
    --sage: #CBD5C0;

    --white: #ffffff;
    --text: #555;
    --shadow: rgba(0,0,0,.15);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:var(--sand);
    min-height:100vh;

}

/* ===========================
   BACKGROUND
=========================== */

.background{

    position:fixed;
    inset:0;

    background-image:url("../img/hero.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    transform:scale(1.05);

    animation:zoom 25s ease-in-out infinite alternate;

}

.overlay{

    position:fixed;
    inset:0;

    background:rgba(245,239,230,.72);

    backdrop-filter:blur(2px);

}

/* ===========================
   CONTAINER
=========================== */

.container{

    position:relative;
    z-index:5;

    min-height:100vh;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    gap:35px;

    padding:40px 20px;

}

/* ===========================
   HERO
=========================== */

.hero{

    max-width:760px;

    text-align:center;

    padding:60px;

    background:rgba(255,255,255,.35);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.45);

    border-radius:28px;

    box-shadow:

        0 20px 50px rgba(0,0,0,.10);

    animation:fadeUp 1.2s ease;

}

/* ===========================
   LOGO
=========================== */

.logo{

    width:120px;

    margin-bottom:35px;

}

/* ===========================
   TEXTOS
=========================== */

.subtitle{

    display:block;

    color:var(--blue);

    text-transform:uppercase;

    letter-spacing:5px;

    font-size:.85rem;

    margin-bottom:12px;

}

h1{

    font-family:'Oranienbaum',serif;

    font-size:68px;

    color:var(--blue);

    font-weight:400;

    margin-bottom:20px;

}

.verse{

    font-style:italic;

    color:#777;

    font-size:22px;

    margin-bottom:15px;

}

.message{

    color:var(--text);

    font-size:20px;

    line-height:36px;

    margin-bottom:25px;

}

/* ===========================
   BUTTON
=========================== */

.button{

    display:inline-block;

    padding:18px 42px;

    border-radius:50px;

    background:var(--blue);

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    box-shadow:

        0 10px 25px rgba(74,96,122,.30);

}

.button:hover{

    transform:translateY(-4px);

    background:#384d63;

    box-shadow:

        0 18px 35px rgba(74,96,122,.35);

}

.social{

    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;

    gap:18px;

    margin-top:25px; /* substitui o width:100% */

}

.social a{

    display:flex;
    justify-content:center;
    align-items:center;

    width:54px;
    height:54px;

    border-radius:50%;

    background:rgba(255,255,255,.35);

    backdrop-filter:blur(12px);

    color:var(--blue);

    text-decoration:none;

    transition:.3s;

    font-size:22px;

}

.social a:hover{

    background:var(--blue);

    color:white;

    transform:translateY(-5px);

}

/* ===========================
   FOOTER
=========================== */

.launch{

    margin-top:25px;

    color:#777;

    letter-spacing:2px;

    font-size:.9rem;

}

/* ===========================
   ANIMAÇÕES
=========================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes zoom{

    from{

        transform:scale(1.05);

    }

    to{

        transform:scale(1.15);

    }

}

/* ===========================
   RESPONSIVO
=========================== */

@media(max-width:900px){

    .hero{

        padding:45px 30px;

    }

    h1{

        font-size:52px;

    }

    .message{

        font-size:18px;

        line-height:32px;

    }

}

@media(max-width:600px){

    body{

        overflow:auto;

    }

    .hero{

        padding:35px 25px;

        border-radius:22px;

    }

    .logo{

        width:90px;

    }

    h1{

        font-size:40px;

    }

    .subtitle{

        font-size:.75rem;

        letter-spacing:3px;

    }

    .verse{

        font-size:18px;

    }

    .message{

        font-size:17px;

        line-height:30px;

    }

    .button{

        width:100%;

        padding:18px;

    }

}

@media (max-width:768px){

    .container{

        justify-content:flex-start;

        padding:40px 20px 60px;

        gap:25px;

    }

}