/*
|--------------------------------------------------------------------------
| Shadow Form
|--------------------------------------------------------------------------
| File: assets/css/index.css
| Landing Page
|--------------------------------------------------------------------------
*/


/* ==========================================================
   Reset
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    font-family:'Montserrat',sans-serif;
}

body{
    background:#000;
    color:#fff;
    min-height:100vh;
    overflow-x:hidden;
}

body:lang(fa){
    font-family:'Vazirmatn',sans-serif;
    direction:rtl;
}


/* ==========================================================
   Links
========================================================== */

a{
    color:#fff;
    text-decoration:none;
}


/* ==========================================================
   Landing Hero
========================================================== */

.landing-hero{

    position:relative;

    min-height:100dvh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('/images/hero.jpg');

    background-size:cover;

    background-position:center;

}


/* ==========================================================
   Overlay
========================================================== */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,.15),
        rgba(0,0,0,.45),
        rgba(0,0,0,.75)
    );

    z-index:1;

}


/* ==========================================================
   Hero Content
========================================================== */

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:40px;

}

.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:78px;

    font-weight:500;

    letter-spacing:10px;

    margin-bottom:18px;

}

.hero-content h2{

    font-size:22px;

    font-weight:400;

    letter-spacing:5px;

    text-transform:uppercase;

    color:#d8d8d8;

    margin-bottom:28px;

}

.hero-description{

    max-width:720px;

    margin:0 auto 50px;

    font-size:18px;

    line-height:1.9;

    color:#c8c8c8;

}


/* ==========================================================
   Language
========================================================== */

.language-selector{

    margin-bottom:45px;

}

.language-title{

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    opacity:.65;

    margin-bottom:22px;

}

.language-buttons{

    display:flex;

    justify-content:center;

    gap:14px;

    flex-wrap:wrap;

}

.lang-btn{

    padding:13px 26px;

    border:1px solid rgba(255,255,255,.18);

    background:rgba(255,255,255,.03);

    border-radius:8px;

    backdrop-filter:blur(10px);

    transition:.25s;

    font-size:14px;

    letter-spacing:1px;

}

.lang-btn:hover{

    background:rgba(255,255,255,.08);

    border-color:rgba(255,255,255,.35);

    transform:translateY(-2px);

}


/* ==========================================================
   Button
========================================================== */

.btn{

    display:inline-block;

    margin-top:25px;

    padding:14px 34px;

    border:1px solid rgba(255,255,255,.28);

    background:transparent;

    color:#fff;

    letter-spacing:2px;

    text-transform:uppercase;

    cursor:pointer;

    transition:.25s;

}

.btn:hover{

    background:#fff;

    color:#000;

}


/* ==========================================================
   Access Card
========================================================== */

.access-card{

    margin:70px auto 0;

    max-width:520px;

    padding:40px;

    border-radius:12px;

    background:rgba(255,255,255,.035);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

}

.access-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    letter-spacing:2px;

    margin-bottom:15px;

}

.access-card p{

    opacity:.75;

    line-height:1.9;

    margin-bottom:25px;

}


/* ==========================================================
   Access Form
========================================================== */

.access-form{

    display:flex;

    flex-direction:column;

    gap:18px;

    align-items:center;

}

.access-form input{

    width:220px;

    height:46px;

    padding:0 18px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.15);

    border-radius:8px;

    color:#fff;

    font-size:15px;

    letter-spacing:3px;

    text-align:center;

    text-transform:uppercase;

}

.access-form input:focus{

    outline:none;

    border-color:#d4af37;

}


/* ==========================================================
   Responsive
========================================================== */

@media(max-width:768px){

    .hero-content{

        padding:25px;

    }

    .hero-content h1{

        font-size:46px;

        letter-spacing:5px;

    }

    .hero-content h2{

        font-size:15px;

        letter-spacing:3px;

    }

    .hero-description{

        font-size:15px;

    }

    .language-buttons{

        flex-direction:column;

        align-items:center;

    }

    .lang-btn{

        width:230px;

    }

    .access-card{

        margin-top:45px;

        padding:28px;

    }

    .access-card h3{

        font-size:28px;

    }

}