* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: #FFFFFF; /* White color for HB Shop BD */
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    line-height: 50px; /* Aligns with previous logo height */
}

.logo-text:hover {
    color: #f0c14b; /* Hover color matches nav links */
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

.nav-menu a:hover {
    color: #f0c14b;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.main-content {
    margin-top: 80px;
}

.hero {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.products {
    padding: 2rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card:hover {
    transform: translateY(-5px);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f0c14b;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #e0b03a;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #f0c14b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .product-card img {
        height: 150px;
    }

    .logo-text {
        font-size: 1.2rem; /* Smaller font for mobile */
    }
}