/* Hero Header */
.hero-header {
    background: url('images/brass-1.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    color: white;
}

.hero-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-header .hero-content {
    position: relative;
    z-index: 2;
}

.hero-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.underline {
    width: 100px;
    height: 4px;
    background: yellow;
    margin: 0 auto;
}

/* Product List */
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
}

.product {
    width: 220px;
    margin: 15px;
    text-align: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product p {
    margin-top: 10px;
    font-weight: bold;
}

/* Note Section */
.note {
    background: #222;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1rem;
}

.note strong {
    color: yellow;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-header {
        padding: 60px 15px;
    }

    .hero-header h1 {
        font-size: 2rem;
    }

    .product-list {
        flex-direction: column;
        align-items: center;
    }

    .product {
        width: 90%;
    }
}
