/* ======================================================
   DOKHANI
   Premium Dark Metaverse UI
   Pars Pardaz Dokhani
====================================================== */

:root{

    --gold:#C89A2D;
    --gold2:#FFD56A;
    --black:#050505;
    --black2:#0D0D0D;
    --black3:#171717;
    --gray:#9d9d9d;
    --white:#ffffff;

    --glass:rgba(255,255,255,.05);

    --radius:20px;

    --shadow:0 15px 50px rgba(0,0,0,.45);

    --transition:.45s;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--black);

    color:#fff;

    font-family:'Vazirmatn',sans-serif;

    overflow-x:hidden;

}

/**********************
Background
**********************/

body::before{

    content:"";

    position:fixed;

    width:120%;

    height:120%;

    top:-10%;

    left:-10%;

    background:
        radial-gradient(circle at 20% 20%,rgba(200,154,45,.12),transparent 30%),
        radial-gradient(circle at 80% 10%,rgba(255,213,106,.07),transparent 25%),
        radial-gradient(circle at 60% 80%,rgba(255,255,255,.04),transparent 25%);

    z-index:-3;

}

body::after{

    content:"";

    position:fixed;

    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);

    background-size:60px 60px;

    opacity:.18;

    z-index:-2;

}

/**********************
Scrollbar
**********************/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(var(--gold),var(--gold2));

    border-radius:50px;

}

/**********************
Navbar
**********************/

nav{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:85px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 8%;

    backdrop-filter:blur(18px);

    background:rgba(5,5,5,.45);

    z-index:999;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.logo{
    display:flex;
    align-items:center;
}

.logo a{
    display:flex;
    align-items:center;
}

.logo img{

    height:68px;
    width:auto;
    display:block;

    transition:.35s;

    filter:
        drop-shadow(0 0 18px rgba(255,213,106,.15));

}

.logo img:hover{

    transform:scale(1.05);

    filter:
        drop-shadow(0 0 30px rgba(255,213,106,.35));

}

nav ul{

    display:flex;

    gap:35px;

    list-style:none;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.35s;

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    right:0;

    width:0;

    height:2px;

    background:var(--gold2);

    transition:.35s;

}

nav a:hover{

    color:var(--gold2);

}

nav a:hover::after{

    width:100%;

}

/**********************
Hero
**********************/

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;

    padding:120px 30px;

}

.hero::before{

    content:"";

    position:absolute;

    width:900px;

    height:900px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(200,154,45,.25),
    transparent 70%);

    filter:blur(60px);

    animation:pulse 8s infinite;

}

.hero-content{

    max-width:900px;

    position:relative;

    z-index:5;

}

.hero h3{

    color:var(--gold2);

    font-weight:400;

    letter-spacing:5px;

    margin-bottom:20px;

}

.hero h1{

    font-size:120px;

    line-height:1;

    font-weight:900;

    margin-bottom:25px;

    letter-spacing:10px;

    background:linear-gradient(#fff,var(--gold2));

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero p{

    color:#bdbdbd;

    font-size:22px;

    line-height:2;

    max-width:750px;

    margin:auto;

}
.hero{

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    position:relative;
    overflow:hidden;

    padding:120px 30px;

    background:
        linear-gradient(rgba(5,5,5,.72),rgba(5,5,5,.82)),
        url("../img/hero.webp") center center / cover no-repeat;

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:900px;

}

/**********************
Buttons
**********************/

.buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:25px;

}

.btn{

    padding:16px 42px;

    border-radius:50px;

    text-decoration:none;

    transition:.45s;

    font-weight:700;

}

.gold{

    background:linear-gradient(var(--gold),var(--gold2));

    color:#000;

    box-shadow:0 0 35px rgba(255,213,106,.35);

}

.gold:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 60px rgba(255,213,106,.55);

}

.dark{

    border:1px solid rgba(255,255,255,.15);

    color:white;

    backdrop-filter:blur(20px);

}

.dark:hover{

    background:white;

    color:black;

}

/**********************
Sections
**********************/

section{

    padding:110px 8%;

}

.title{

    text-align:center;

    font-size:42px;

    margin-bottom:70px;

}

.title::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    margin:20px auto;

    background:linear-gradient(var(--gold),var(--gold2));

}

/**********************
About
**********************/

.container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.left img{

    width:100%;

    border-radius:25px;

    box-shadow:var(--shadow);

}

.right span{

    color:var(--gold2);

}

.right h2{

    font-size:48px;

    margin:20px 0;

}

.right p{

    color:#b8b8b8;

    line-height:2.2;

}

/**********************
Cards
**********************/

.cards{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.card{

    background:var(--glass);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:45px;

    text-align:center;

    backdrop-filter:blur(20px);

    transition:.45s;

}

.card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

    box-shadow:0 0 50px rgba(200,154,45,.25);

}

.card h3{

    color:var(--gold2);

    margin-bottom:20px;

    font-size:26px;

}

.card p{

    line-height:2;

    color:#bbb;

}

/**********************
Timeline
**********************/

.timeline{

    display:flex;

    justify-content:space-between;

    gap:15px;

    margin-top:70px;

}

.timeline div{

    flex:1;

    text-align:center;

    padding:30px;

    background:var(--glass);

    border-radius:20px;

    border:1px solid rgba(255,255,255,.06);

}

/**********************
Counter
**********************/

.counter{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.item{

    text-align:center;

    padding:45px;

}

.item h2{

    font-size:60px;

    color:var(--gold2);

}

.item span{

    color:#bdbdbd;

}

/**********************
Contact
**********************/

.contact-box{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

}

.info,
.form{

    background:rgba(255,255,255,.05);

    padding:45px;

    border-radius:25px;

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

}

.info p{

    margin:18px 0;

    color:#c5c5c5;

    line-height:2;

}

.form input,
.form textarea{

    width:100%;

    background:#111;

    border:1px solid #2b2b2b;

    color:white;

    margin-bottom:18px;

    padding:16px;

    border-radius:12px;

    font-family:inherit;

}

.form textarea{

    height:170px;

    resize:none;

}

.form button{

    width:100%;

    padding:18px;

    background:linear-gradient(var(--gold),var(--gold2));

    border:none;

    cursor:pointer;

    border-radius:50px;

    font-weight:700;

    font-size:18px;

}

/**********************
Footer
**********************/

footer{

    padding:70px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    background:#070707;

}

.footer-logo{

    margin-bottom:25px;

}

.footer-logo img{

    width:260px;
    max-width:90%;
    height:auto;

    transition:.35s;

    filter:
        drop-shadow(0 0 25px rgba(255,213,106,.18));

}

.footer-logo img:hover{

    transform:scale(1.04);

}

footer p{

    margin:20px 0;

    color:#bfbfbf;

    font-size:18px;

    letter-spacing:1px;

}

footer span{

    color:#8d8d8d;

}

/**********************
Animation
**********************/

@keyframes pulse{

0%{

transform:scale(.9);

opacity:.5;

}

50%{

transform:scale(1.2);

opacity:1;

}

100%{

transform:scale(.9);

opacity:.5;

}

}