/* General Styling */
body {
    background-color: #f8f9fa;
    color: #212529;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 60px;
}

.navbar {
    background-color: #000;
}

.navbar .nav-link {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: #f8f9fa;
}

.navbar-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background-image: url('../assets/pistol.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.25rem;
    margin-top: 10px;
}

/* Categories Section */
.categories-section {
    background-color: #f8f9fa;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.category-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
}

.category-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.category-info .btn {
    background-color: transparent;
    border: 2px solid white;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-info .btn:hover {
    background-color: white;
    color: black;
}

/* Products Section */

    /* Disable text selection */
    .product-card {
        -webkit-user-select: none; /* Chrome, Safari, Edge */
        -moz-user-select: none;    /* Firefox */
        -ms-user-select: none;     /* Internet Explorer/Edge */
        user-select: none;         /* Non-prefixed version */
    }

.products-section {
    background-color: #f8f9fa;
}

.product-card {
    padding: 10px;
    margin-bottom: 20px;
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    pointer-events: none;
}

.product-card p {
    margin-top: 10px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Footer Styling */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #f8f9fa;
}

