@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


:root{
    --brown:#6B4F3A;
    --gold:#C49A6C;
    --blue:#AFC8D8;
    --dark:#111;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}


body{

    background:
    linear-gradient(
        135deg,
        #111,
        #181818,
        #0d1115
    );

    color:white;
    overflow-x:hidden;

}


/* ================= NAVBAR ================= */


.navbar{

    position:fixed;

    top:0;
    width:100%;

    padding:22px 10%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(17,17,17,.85);

    backdrop-filter:blur(15px);

    z-index:999;

}


.logo{

    font-size:25px;

    font-weight:800;

    color:var(--blue);

}



.navbar ul{

    display:flex;

    gap:30px;

    list-style:none;

}



.navbar a{

    color:white;

    text-decoration:none;

    font-size:14px;

    transition:.3s;

}



.navbar a:hover{

    color:var(--gold);

}



.active{

    color:var(--gold)!important;

}





/* ================= BACK HOME BUTTON ================= */


.back-home{

    position:fixed;

    top:100px;

    left:40px;

    z-index:999;


    display:flex;

    align-items:center;

    gap:10px;


    padding:12px 25px;


    border-radius:50px;


    background:linear-gradient(
        135deg,
        var(--gold),
        var(--brown)
    );


    color:white;

    text-decoration:none;

    font-size:14px;

    font-weight:600;


    box-shadow:
    0 10px 30px rgba(0,0,0,.4);


    transition:.4s;

}



.back-home:hover{

    transform:translateX(-8px);

}







/* ================= HERO ================= */


.hero{

    min-height:100vh;

    padding:150px 10% 80px;


    display:flex;

    justify-content:space-between;

    align-items:center;


    gap:70px;

}



.text{

    width:50%;

}



.text span{

    color:var(--blue);

    letter-spacing:5px;

    font-size:14px;

}




.text h1{

    font-size:70px;

    margin:20px 0;

    line-height:1.1;

    color:white;

}



.text p{

    color:#ccc;

    line-height:2;

    font-size:16px;

}






/* ================= IMAGE ================= */


.picture{

    width:520px;

    height:330px;

    position:relative;

}



.picture img{

    width:100%;

    height:100%;


    object-fit:contain;


    border-radius:35px;


    background:#222;


    padding:10px;


    border:1px solid #333;


    box-shadow:

    0 20px 50px rgba(0,0,0,.5);


}




.floating{


    position:absolute;


    bottom:-25px;


    left:-40px;


    background:#1c1c1c;


    padding:18px 30px;


    border-radius:25px;


    border:1px solid #444;


    animation:move 3s infinite;


    font-size:14px;


}



.floating i{

    color:var(--gold);

    margin-right:10px;

}







/* ================= CONTENT ================= */


.content{

    padding:100px 10%;

    text-align:center;

}



.content h2{

    font-size:45px;

    margin-bottom:50px;

    color:white;

}





.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}




.card,
.big-card{


    background:

    linear-gradient(
        145deg,
        #1c1c1c,
        #151515
    );


    padding:35px;


    border-radius:30px;


    border:1px solid #333;


    transition:.4s;


}



.card:hover,
.big-card:hover{


    transform:translateY(-10px);


    border-color:var(--gold);


    box-shadow:

    0 20px 40px rgba(196,154,108,.15);


}





.card i,
.big-card i{


    font-size:40px;

    color:var(--gold);

    margin-bottom:20px;

}




.card h3{

    margin-bottom:15px;

}



.card p,
.big-card p{


    color:#ccc;

    line-height:1.8;

}



.big-card{

    max-width:900px;

    margin:auto;

}





/* ================= ANIMATION ================= */



@keyframes move{


    50%{

        transform:translateY(-15px);

    }

}







/* ================= RESPONSIVE ================= */



@media(max-width:1000px){


    .hero{


        flex-direction:column;

        text-align:center;


    }


    .text{

        width:100%;

    }


    .text h1{

        font-size:50px;

    }


    .picture{

        width:420px;

        height:280px;

    }


    .cards{

        grid-template-columns:1fr;

    }


}




@media(max-width:600px){


    .navbar{

        flex-direction:column;

        gap:15px;

    }


    .navbar ul{

        display:none;

    }


    .back-home{

        top:120px;

        left:20px;

    }



    .text h1{

        font-size:38px;

    }


    .picture{

        width:300px;

        height:220px;

    }


    .floating{

        left:0;

    }


}