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

body {

    background: #050505;
    font-family: Poppins;
    color: white;

}

header {

    position: absolute;
    width: 100%;
    z-index: 100;

}

nav {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;

}

.logo {
    display: flex;
    align-items: center;
    font-family: Bebas Neue;
}

.logo h1 {
    font-size: 30px;
    margin-left: 10px;
    margin-bottom: 0px !important;
    letter-spacing: 2px;
}

.logo img {

    height: 50px;

}

nav ul {

    display: flex;
    list-style: none;
    gap: 40px;

}

nav li {

    cursor: pointer;
    transition: .3s;

}

nav li:hover {

    color: #d9b36a;

}

nav button {

    background: #d9b36a;
    padding: 12px 28px;
    border: none;
    font-weight: bold;
    cursor: pointer;

}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;

    background-image: url("./assets/banner.png");
    background-size: cover;
    /* Image poori screen cover karegi */
    background-position: center;
    /* Center se align hogi */
    background-repeat: no-repeat;
    /* Repeat nahi hogi */
    background-attachment: fixed;
    /* Optional: Parallax effect */

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

    padding: 0 20px;
    text-align: center;
}

.overlay {

    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);

}

.hero-content {

    position: relative;
    text-align: center;
    z-index: 2;

}

.hero h1 {

    font-family: Bebas Neue;
    font-size: 110px;
    letter-spacing: 5px;
    color: #d9b36a;

}



.hero p {

    /* width: 700px; */
    margin: auto;
     /* font-family: Bebas Neue; */
      letter-spacing: 5px;
      font-weight: bold;
    font-size: 80px;
    margin-top: 15px;
    line-height: 32px;
   
    

}

.buttons {

    margin-top: 40px;

}

.buttons a {

    text-decoration: none;
    padding: 18px 35px;
    margin: 10px;
    display: inline-block;
    transition: .4s;

}

.buttons a:first-child {

    background: #d9b36a;
    color: black;

}

.buttons a:last-child {

    border: 2px solid #d9b36a;
    color: white;

}



.buttons a:hover {

    transform: translateY(-6px);

}

.categories {

    padding: 100px 8%;

}

.categories h2 {

    font-family: Bebas Neue;
    font-size: 60px;
    margin-bottom: 50px;

}

.cards {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

.card {

    height: 300px;
    background: #101010;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border: 1px solid #333;
    transition: .4s;

}

.card:hover {

    background: #d9b36a;
    color: black;
    transform: translateY(-10px);

}

.about {

    padding: 120px 10%;
    background: #0b0b0b;
    text-align: center;

}

.about h2 {

    font-family: Bebas Neue;
    font-size: 70px;
    margin-bottom: 20px;

}

.about p {

    font-size: 20px;
    line-height: 38px;
    color: #bbb;

}

.banner {

    padding: 150px;
    text-align: center;
    background: black;

}

.banner h2 {

    font-family: Bebas Neue;
    font-size: 70px;
    letter-spacing: 3px;

}

.banner button {

    margin-top: 35px;
    padding: 18px 45px;
    background: #d9b36a;
    font-size: 18px;
    border: none;
    cursor: pointer;

}

footer{
    background:#050505;
    padding:60px 20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
}

footer img{
    width:80px;
    margin-bottom:20px;
}

footer p{
    color:#bdbdbd;
    margin:10px 0;
    font-size:15px;
}

.social-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin:25px 0;
}

.social-icons a{
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:2px solid #d9b36a;
    border-radius:50%;
    color:#d9b36a;
    text-decoration:none;
    font-size:22px;
    transition:.3s;
}

.social-icons a:hover{
    background:#d9b36a;
    color:#000;
    transform:translateY(-5px);
}

.copyright{
    margin-top:20px;
    color:#777;
    font-size:14px;
}

@media(max-width:900px) {

    .hero h1 {

        font-size: 70px;

    }

    .hero p {

        width: 90%;

    }

    .cards {

        grid-template-columns: 1fr;

    }

    nav ul {

        display: none;

    }

}

@media (max-width:1024px) {

    nav {
        padding: 20px 5%;
    }

    .hero h1 {
        font-size: 80px;
    }

    .hero p {
        width: 80%;
        font-size: 16px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner {
        padding: 100px 40px;
    }

    .banner h2 {
        font-size: 55px;
    }

}

@media (max-width:768px) {

    nav {
        padding: 18px 20px;
    }

    nav ul {
        display: none;
    }

    nav button {
        display: none;
    }

    .logo img {
        height: 45px;
    }


    .hero h1 {
     font-size: 42px;
        line-height: 55px;
        letter-spacing: 2px;
    }

    .hero p {
        width: 100%;
        font-size: 25px;
        line-height: 28px;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .buttons a {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .categories {
        padding: 70px 20px;
    }

    .categories h2 {
        font-size: 40px;
        text-align: center;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        height: 220px;
    }

    .about {
        padding: 70px 20px;
    }

    .about h2 {
        font-size: 45px;
    }

    .about p {
        font-size: 16px;
        line-height: 30px;
    }

    .banner {
        padding: 80px 20px;
    }

    .banner h2 {
        font-size: 40px;
        line-height: 45px;
    }

    .banner button {
        width: 100%;
    }

    footer img {
        height: 50px;
    }

}

.menu-btn {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

@media(max-width:768px) {

    

    .menu-btn {
        display: block;
        z-index: 1001;
    }

    .shop-btn {
        display: none;
    }

    nav {
        /* position: relative; */
        display: flex;
        justify-content: center;
    }

    nav ul {

        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #0b0b0b;

        flex-direction: column;
        align-items: center;

        gap: 25px;

        padding: 30px 0;

        display: none;
    }

    nav ul.active {
        display: flex;
    }

}

.inquire-btn{
    margin-top: 70px;
}
.inquire-btn a{
    text-decoration: none;
    padding: 18px 35px;
    margin: 10px;
    border: 2px solid #d9b36a !important;
    color: white !important;
   transition: .4s;
}

.inquire-btn a:hover {
    transform: translateY(-6px);
}