/* ==========================================================
   KHAZARI LANDING
   ========================================================== */


/*==============================
  FONTS
==============================*/

@font-face{
    font-family:"Simple Serenity";
    src:url("./Simple Serenity Serif.ttf") format("truetype");
    font-weight:normal;
    font-style:normal;
}


/*==============================
  RESET
==============================*/

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

html{

    width:100%;
    height:100%;
    scroll-behavior:smooth;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:geometricPrecision;

}

body{

    width:100%;
    height:100vh;

    overflow:hidden;

    background:#F8F5EE;

    color:#000;

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

    position:relative;

}


/*==============================
  BACKGROUND GLOW
==============================*/

.backgroundGlow{

    position:fixed;

    inset:0;

    pointer-events:none;

    background:
    radial-gradient(circle at 50% 42%,
    rgba(255,255,255,.92),
    rgba(255,255,255,.35) 26%,
    transparent 65%);

    filter:blur(30px);

    opacity:.95;

}


/*==============================
  MAIN
==============================*/

.landing{

    position:relative;

    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    transform:translateY(22px);

}


/*==============================
  LOGO
==============================*/

.logo{

    width:58px;

    margin-bottom:26px;

    user-select:none;

    pointer-events:none;

    filter:
    drop-shadow(0 0 12px rgba(255,255,255,.95))
    drop-shadow(0 0 26px rgba(255,255,255,.65));

    animation:logoFade 1.8s ease forwards;

    opacity:0;

}


/*==============================
  TITLE
==============================*/

.catalog{

    position:relative;

    font-family:"Simple Serenity", serif;

    font-size:212px;

    line-height:.82;

    font-weight:400;

    letter-spacing:-1px;

    color:#000;

    text-decoration:none;

    font-feature-settings:
        "liga" 1,
        "dlig" 1,
        "kern" 1;

    transition:
    transform .8s cubic-bezier(.19,1,.22,1),
    opacity .8s,
    text-shadow .8s;

    text-shadow:

    0 0 10px rgba(255,255,255,.95),
    0 0 22px rgba(255,255,255,.70),
    0 0 48px rgba(255,255,255,.28);

    opacity:0;

    animation:titleFade 1.9s .25s forwards;

}

.catalog:hover{

    transform:scale(1.018);

    text-shadow:

    0 0 16px rgba(255,255,255,.95),
    0 0 34px rgba(255,255,255,.8),
    0 0 60px rgba(255,255,255,.38);

}


/*==============================
  SOCIALS
==============================*/

.socials{

    display:flex;

    gap:14px;

    margin-top:48px;

    opacity:0;

    animation:fadeUp 2s .65s forwards;

}

.socials a{

    width:36px;

    height:36px;

    border:1.45px solid #f7bca5;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#f7bca5;

    transition:
    all .55s cubic-bezier(.19,1,.22,1);

    backdrop-filter:blur(2px);

}

.socials i{

    font-size:15px;

    font-weight:300;

}

.socials a:hover{

    transform:translateY(-2px);

    background:#f7bca5;

    color:white;

    box-shadow:
    0 8px 25px rgba(247,188,165,.22);

}


/*==============================
  FOOTER
==============================*/

footer{

    position:fixed;

    bottom:24px;

    width:100%;

    display:flex;

    justify-content:center;

    pointer-events:none;

}

.footerInner{

    display:flex;

    gap:36px;

    font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;

    font-size:8px;

    letter-spacing:3.2px;

    color:#222;

    opacity:.58;

    text-transform:uppercase;

}


/*==============================
  ANIMATIONS
==============================*/

@keyframes logoFade{

    from{

        opacity:0;

        transform:
        translateY(-12px)
        scale(.98);

    }

    to{

        opacity:1;

        transform:
        translateY(0)
        scale(1);

    }

}


@keyframes titleFade{

    from{

        opacity:0;

        transform:
        translateY(16px);

    }

    to{

        opacity:1;

        transform:
        translateY(0);

    }

}


@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(12px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*==============================
  RESPONSIVE
==============================*/

@media (max-width:1500px){

.catalog{

font-size:180px;

}

}


@media (max-width:1200px){

.catalog{

font-size:145px;

}

.logo{

width:52px;

}

}


@media (max-width:900px){

.catalog{

font-size:105px;

}

.logo{

width:46px;

}

.footerInner{

gap:18px;

font-size:7px;

letter-spacing:2px;

}

}


@media (max-width:650px){

.catalog{

font-size:72px;

}

.logo{

width:38px;

margin-bottom:18px;

}

.socials{

margin-top:32px;

}

.socials a{

width:32px;
height:32px;

}

.socials i{

font-size:13px;

}

.footerInner{

flex-direction:column;

align-items:center;

gap:6px;

}

}