/* Category Section */
.category-intro {
    padding: 40px 20px;
    text-align: center;
    background: url('../images/judaica-banner.jpg');
    background-size: cover; /* Ensure the image covers the entire background */
    background-attachment: fixed; /* Prevent the background from scrolling with the content */
    background-position: center; /* Better visual alignment */
    color: white;
    width: 100%;
}

.category-intro h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.category-intro p {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
}

@media screen and (max-width: 768px) {
    .category-intro p {
        max-width: 430px; /* Adjust a smaller width for smaller screens */
    }
}



/* Product Highlights Section */
.product-highlights {
    background-color: #fff7e6;
    text-align: center;
    padding: 20px;
}

.highlight-banner {
    font-size: 1.2em;
    font-weight: bold;
    color: #d17c00;
}



/* Judaica Products Section */
.judaica-products {
    padding: 40px 20px;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-item {
    color: #383737;
    border: 1.3px solid #d2d1d1;
    border-radius: 8px;
    max-width: 180px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.product-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-item img {
    width: 100%;
    height: auto;
}

.product-item h3 {
    font-size: 1em;
}

.price {
    font-size: 0.9em;
}

.current-price {
    color: #f39200;
    font-weight: bold;
}

.original-price {
    text-decoration: line-through;
    color: #969494;
    font-size: 0.8em;
}



/* Promo Banner Section */
.promo-banner {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-video {
    position: absolute; /* Position the video behind the content */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire element */
    z-index: -1;
}

.promo-content {
    text-align: center;
    color: white;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.93);
    padding: 20px;
    border-radius: 80px;
    max-width: 600px;
}

.promo-content h2 {
    font-size: 2.5em;
    margin-bottom: 10px; 
}

.promo-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.5;
}

.promo-content .promo-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f39200;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.promo-content .promo-btn:hover {
    background-color: #d17c00;
}

@media screen and (max-width: 768px) {
    .promo-content { /* Adjust the width and height for smartphones */
        max-width: 360px;
        max-height: 330px;
    }
}



/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333333;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    border: 1px solid #ddd9d9;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    text-align: left;
    box-shadow: 4px 6px 8px rgb(137, 58, 9);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    font-style: italic;
    color: #5a5959;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: bold;
    color: #323131;
    text-align: right;
}