/* RED - #FF1616 */
/* YELLOW - #FFDE5A */

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

a {
    text-decoration: none;
    color: #000;
}


@media (max-width: 768px) {

    .overlay {
        font-size: smaller;
    }
}

.hero {
    position: relative;
    height: 75vh;
    background: url('../header-bg.jpeg') fixed center/cover;
    color: #fff;
    
}

.contain-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.35);
}

.overlay {
    text-align: center;
    padding: 20px;
    /* Add some padding for better readability */
}

.overlay h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1.5em;
    color: #fff;
    /* Text color */
}

.text-outline {
    color: #fff;
    /* Text color */
    font-size: 24px;
    /* Adjust font size as needed */
    text-shadow: -1px -1px 1px #000,
    1px -1px 1px #000,
    -1px 1px 1px #000,
    1px 1px 1px #000;
}


.uppercase {
    text-transform: uppercase;
    text-align: center;
}


    .stretch-div {
        width: 100%;
        height: 25px;
        background-color: #FFDE5A;
        border-bottom: #fc1616 4px solid;
    }

/* Product Range Section Styles */
.product-description h3{
    text-align: center;
    margin: 20px 0px 0px 0px;
}


.product-range {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    /* Add padding to the product boxes */
}

.product-box {
    width: calc(33.33% - 20px);
    /* 3 boxes in a row with 20px margin between them */
    margin-bottom: 20px;
    text-align: center;
}

.product-box img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    /* Add border for image */
    border-radius: 8px;
    /* Add border-radius for a rounded appearance */
}

.product-box p {
    font-weight: bold;
    margin: 0;
    margin-top: -10px;
    padding: 15px 0 10px 0;
    background-color: #FFDE5A;
    border-radius: 0 0 8px 8px;
    border: #fc1616 solid 2px;
}


.edit-img{
    filter: brightness(115%) saturate(130%) contrast(105%);
}
/* Adjust height of product boxes for consistency */
@media (min-width: 768px) {
    .product-box {
        height: 300px;
        /* Adjust the height as needed */
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .product-box {
        width: calc(50% - 20px);
        /* 2 boxes in a row with 20px margin between them */
    }
}

/* Further adjustments for even smaller screens */
@media (max-width: 480px) {
    .product-box {
        width: calc(100% - 20px);
        /* 1 box in a row with 20px margin */
    }
}