﻿/* Image Styles */
.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-container {
    position: relative;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 10px;
    border-radius: 4px;
    text-align: center;
}

.hero-text {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-button {
    display: inline-block;
    padding: 12px 30px;
    margin-top: 20px;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.3s, color 0.3s;
}

    .hero-button:hover {
        background-color: white;
        color: #000;
    }
/* Featured Products Styles */
.featured-products {
    text-align: left; /* Aligns the whole section to the left */
    padding: 50px 0;
    position: relative;
    background-color: #BCE9F7;
}

    .featured-products h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: bold;
        text-align: left;
        margin-left: 30px;
    }


.product-list {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    
}

.product-item {
    flex: 0 1 auto;
    max-width: 250px;
    margin: 15px;
    padding: 20px;
    text-align: center;
    
    border-radius: 5px;
}


    .product-item img {
        width: 100%;
        height: 200px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .product-item h4 {
        font-size: 18px;
        margin-bottom: 10px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #080D17;
    }

    .product-item p {
        margin-bottom: 10px;
        font-size: 16px;
        color: #333;
    }

    .product-item .btn {
        margin-top: auto;
        width: 100%;
        padding: 10px;
        background-color: #358829;
        color: white;
        text-transform: uppercase;
        font-weight: bold;
        cursor: pointer;
    }

        .product-item .btn:hover {
            background-color: #000;
            color: white;
        }


/* Arrow Styles */
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

@media (max-width: 1024px) {
    .product-item {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .product-item {
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .product-item {
        max-width: 150px;
    }
}
