﻿
.hero {
    background: url('/images/hero-bg.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
a + .cta-button {
    color: var(--color-white) !important;
}
    .cta-button:hover {
        background-color: var(--color-primary-darker);
    }

    /* featured products */

/*

*/
.featured-products, .promotions, .about-us, .testimonials, .blog, .newsletter {
    padding: 50px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/*.product-grid, .promo-grid, .testimonial-grid, .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 20px auto;
}



*/
.hero-content .cta-button, .promo-card .cta-button, .featured-products .cta-button, .testimonials .cta-button {
    margin: 2.5rem 0;
    color: var(--color-white);
}
.featured-products .product-grid, .testimonial-grid {
    display: flex;
    justify-content: space-evenly;
}

    .product-card img, .promo-card img, .blog-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 5px;
    }
    .product-card h3, .promo-card h3, .blog-card h3 {
        font-size: 1.5rem;
        margin: 10px 0;
    }
.product-card, .promo-card, .blog-card {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.featured-products+.bg-gray, .bg-gray{
    background:#eee;
}

/*about us*/


.about-us img {
//    max-width: 500px;
    margin: 20px auto;
    border-radius: 10px;
}



/*end about us*/


/* testimonials */


.testimonial {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

    .testimonial p {
        font-style: italic;
    }

.author {
    font-weight: bold;
    margin-top: 10px;
}

@media screen and (max-width: 970px) {
    .product-grid, .testimonial-grid {
        flex-direction: column;
    }
}