.hero h1 {
    margin: 40px 0 20px 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    text-decoration: underline;
}

a.tag {
	display: inline-block;
	background-color: var(--primary-color);
	color: #fff;
	padding: 0 8px;
	margin: 0 0px 0 2px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 0.9em;
	transition: background-color 0.3s, color 0.3s;
}

a.tag:hover {
    background-color: var(--primary-color-dark);
    color: #fff;
}

.featured-products {
    margin-bottom: 50px;
}

.featured-products h2 {
	font-size: 2em;
	color: #333;
	margin-bottom: 20px;
	margin-top: 30px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-card-large {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    flex: 1 1 100%;
}

.product-card-large:hover {
    transform: translateY(-5px);
}

.product-card-large img {
    width: 100%;
    height: auto;
}

.product-card-large .product-info {
    padding: 15px;
}

.product-card-large .product-info h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

.product-card-large .product-info p {
    font-size: 1em;
    color: #666;
    margin-bottom: 10px;
}

.product-card-large .product-info .price {
    font-size: 1.2em;
    color: #333;
}

.product-card-small-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 200px;
}

.product-card-small {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.product-card-small:hover {
    transform: translateY(-5px);
}

.product-card-small img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-left: 10px;
}

.product-card-small .product-info {
    text-align: left;
    padding: 10px;
    flex: 1;
}

.product-card-small .product-info h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
}

.product-card-small .product-info .type {
    text-transform: uppercase;
}

.product-card-small .product-info .price {
    font-size: 1em;
    color: #333;
}

.art-terrasse-logo {
    width: 300px;
    height: auto;
}

#region {
    background-image: url('../images/home/provence-region-paca-paysage.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 500px;
    overflow: hidden;
}

#devis {
    padding-top: 0;
}

section#region.inner-shadow::before {
    background-color: rgba(108, 20, 168, 0.3);
}

section#region .content-container {
	position: relative;
	z-index: 2;
	top: 50%;
	position: absolute;
	transform: translateY(-50%);
}

section#region img {
	display: block;
	width: 200px;
	height: auto;
	margin: 0 auto;
    filter: drop-shadow(-2px 2px 3px rgba(0,0,0,0.3));
}

section#region .content-col-text {
	text-shadow: -1px 1px 1px rgba(0,0,0,0.1), -1px 1px 3px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .product-grid {
        flex-direction: row;
    }

    .product-card-large {
        flex: 2;
    }

    .product-card-small-container {
        flex: 1;
    }
}

@media (max-width: 768px) {

    .hero h1{
        margin: 30px 0 25px 0;
    }
    
    #videoReviewsBlocks {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        width: 100%;
    }

    #videoReviewsBlocks .fancy-content-block::before,
    #videoReviewsBlocks h3 {
        display: none;
    }

    section#region {
        min-height: 580px;
    }

    section#region .content-row {
        flex-direction: column-reverse;
    }

    .content-col-text p:last-child {
        margin-bottom: 0;
    }

    .content-col-image {
        padding-top: 0;
    }
}

@media (max-width: 576px) {
    .art-terrasse-logo {
        width: 100%;
    }
}