body{
    font-family: 'Montserrat', sans-serif;
    background: #f4f4f4;
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

html{
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
}


/* NAVBAR */

.custom-navbar{
    background: transparent;
    transition: .3s ease;
    padding: 18px 0;
}

.custom-navbar.scrolled{
    background: rgba(10,10,10,.95);
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}

.navbar-brand{
    font-size: 22px;
    letter-spacing: 1px;
}

.navbar .nav-link{
    color: #fff !important;
    margin-left: 10px;
    transition: .3s;
}

.navbar .nav-link:hover{
    color: #ffc107 !important;
}


/* HERO */

.hero-full{
    height: 100vh;
    background-image:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url('../img/logo/homepage.jpg');

    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay{
    position: absolute;
    inset: 0;
}

.hero-inner{
    position: relative;
    z-index: 2;
    color: white;
}

.hero-tag{
    background: #f4b400;
    color: black;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-full h1{
    margin-top: 25px;
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
}

.hero-full p{
    margin-top: 25px;
    max-width: 650px;
    font-size: 20px;
    line-height: 1.8;
    color: #dddddd;
}

.hero-buttons{
    margin-top: 35px;
}

.hero-buttons .btn{
    padding: 14px 28px;
    font-weight: 700;
    margin-right: 15px;
    transition: .3s;
}

.hero-buttons .btn:hover{
    transform: translateY(-3px);
}


/* SECTION */

.section-header{
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2{
    font-size: 30px;
    font-weight: 700;
    color: #222;
}

.yellow-line{
    width: 80px;
    height: 4px;
    background: #ffc107;
    margin: 15px auto;
    border-radius: 10px;
}

.sell-section{
    padding: 40px 0 70px 0;
    background: #f8f8f8;
}

.rent-section{
    padding: 50px 0 70px 0;
    background: #1b1b1b;
}


/* PRODUCT */

.product-card{
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
    transition: .3s ease;
    height: 100%;
}

.product-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 30px rgba(0,0,0,.12);
}

.product-image{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-body{
    padding: 18px;
}

.product-title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    min-height: auto;
    line-height: 1.3;
    text-transform: uppercase;
}

.product-price{
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c2c2c;
    text-align: center;
}

.product-meta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.stock-count{
    color: #666;
    font-weight: 500;
}

.product-btn{
    font-weight: 600;
    padding: 10px;
}


/* PAGE */

.page-banner{
    padding: 150px 0 80px 0;
    background: linear-gradient(180deg,#111,#222);
    color: white;
}

.page-tag{
    background: #f4b400;
    color: black;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
}

.page-banner h1{
    margin-top: 20px;
    font-size: 58px;
    font-weight: 800;
}

.page-banner p{
    color: #cfcfcf;
    margin-top: 10px;
}

.listing-section{
    background: #f8f8f8;
    min-height: 60vh;
}


/* COMPONENT */

.btn-warning{
    font-weight: 600;
}

.btn-dark{
    font-weight: 600;
    transition: .3s;
}

.btn-dark:hover{
    transform: scale(1.02);
}

.badge{
    font-size: 12px;
    padding: 7px 12px;
}


/* FOOTER */

.footer-section{
    background: #1c1c1c;
    color: white;
    padding: 45px 0;
}

.footer-section h5{
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-section p{
    color: #ccc;
    margin-bottom: 8px;
}


/* RESPONSIVE */

@media(max-width:992px){

    .hero-full h1{
        font-size: 52px;
    }

    .hero-full p{
        font-size: 16px;
        max-width: 100%;
    }

    .product-image{
        height: 230px;
    }

    .page-banner h1{
        font-size: 42px;
    }

}

@media(max-width:768px){

    .product-image{
        height: 220px;
    }

    .product-title{
        font-size: 18px;
        min-height: auto;
    }

    .product-price{
        font-size: 18px;
    }

    .product-meta{
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-header h2{
        font-size: 24px;
    }

}