:root{
    --cream:#F3EEE7;
    --black:#121212;
    --gold:#C98A2E;
    --olive:#5B6040;
    --sand:#D9BE97;
    --soft:#E8DDD1;
}

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

html,
body{
    width:100%;
    height:100%;
    overflow:hidden;
}

body{
    font-family:'Poppins', sans-serif;
    background:var(--cream);
    color:var(--black);
    position:relative;
}

.bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(60px);
    opacity:0.18;
    z-index:0;
}

.one{
    width:320px;
    height:320px;
    background:var(--gold);
    top:-120px;
    right:-120px;
}

.two{
    width:280px;
    height:280px;
    background:var(--olive);
    bottom:-120px;
    left:-120px;
}

.hero{
    width:100%;
    height:100vh;

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

    text-align:center;

    padding:40px 20px;

    position:relative;
    z-index:2;
}

.logo{
    width:min(90vw, 950px);
    max-width:950px;

    margin-bottom:40px;

    object-fit:contain;
}

.content{
    max-width:900px;
}

.hero h1{
    font-size:clamp(34px, 5vw, 70px);
    line-height:1.1;
    font-weight:800;
    letter-spacing:1px;
}

.hero h1 span{
    display:block;
    color:var(--olive);
    margin-top:10px;
}

.hindi{
    margin-top:26px;

    font-family:'Noto Sans Devanagari', sans-serif;

    font-size:clamp(22px, 2vw, 34px);

    font-weight:500;

    color:var(--black);
}

.subtext{
    margin-top:18px;

    font-size:clamp(15px, 1.2vw, 20px);

    color:#4d4d4d;

    letter-spacing:1px;
}

footer{
    position:absolute;
    bottom:18px;
    left:0;

    width:100%;

    text-align:center;

    font-size:13px;

    color:#666;

    z-index:2;
}

@media(max-width:768px){

    .logo{
        width:95vw;
        margin-bottom:30px;
    }

    .hero{
        padding:30px 18px;
    }

    footer{
        font-size:11px;
        bottom:12px;
    }
}
