/* Reset & General Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Full-width Dark Banner */
.product-banner {
    width: 100%;
    background-color: #003B4D;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    margin-top: 5rem;
}

/* Hero Section with Fullscreen Image */
.product-hero-section {
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Fullscreen & Responsive Image */
.product-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image stretches properly */
}


/* Responsive Design */
@media (max-width: 768px) {
    .product-banner {
        font-size: 14px;
        padding: 12px 0;
    }

    .make-dark{
        font-size: 1em;
    }
    

    .product-hero-section {
        height: auto;
    }

    .product-hero-image {
        width: 100%;
        height: auto;
    }
}