/* ==========================================================================
   Bezorggebied – Frontend Stylesheet
   ========================================================================== */

/* Container */
.bezorggebied-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.bezorggebied-single {
	color: #333;
	font-size: 16px;
	line-height: 1.6;
}

/* ==========================================================================
   Sectie 1 – Hero / Intro
   ========================================================================== */

.bezorggebied-hero {
	padding: 60px 0;
	background-color: #fafafa;
}

.bezorggebied-hero__grid {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 40px;
	align-items: center;
}

.bezorggebied-hero__title {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px;
	color: #222;
}

.bezorggebied-hero__text {
	margin-bottom: 24px;
}

.bezorggebied-hero__text p {
	margin: 0 0 12px;
}

.bezorggebied-hero__img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

/* Locatielijsten */
.bezorggebied-locatie-lijst {
	margin-top: 24px;
}

.bezorggebied-locatie-lijst h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 10px;
	color: #222;
}

.bezorggebied-locatie-lijst ul {
	list-style: none;
	padding: 0;
	margin: 0;

	display: grid;
	grid-template-columns: 1fr; /* mobiel */
	gap: 6px 16px;
}

/* tablet */
@media (min-width: 768px) {
	.bezorggebied-locatie-lijst ul {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* desktop */
@media (min-width: 1024px) {
	.bezorggebied-locatie-lijst ul {
		grid-template-columns: repeat(3, 1fr);
	}
}

.bezorggebied-locatie-lijst li {
	margin: 0;
	padding: 0;
}

.bezorggebied-locatie-lijst a {
	color: #e8491d;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.bezorggebied-locatie-lijst a:hover,
.bezorggebied-locatie-lijst a:focus {
	color: #c73a12;
	text-decoration: underline;
}

.bezorggebied-locatie-lijst--provincies {
	margin-top: 16px;
}

/* ==========================================================================
   Sectie 2 – Pakketten
   ========================================================================== */

.bezorggebied-pakketten {
	padding: 60px 0;
	background-color: #fff;
}

.bezorggebied-pakketten__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.bezorggebied-pakketten__item {
    position: relative;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    overflow: hidden;
}

.bezorggebied-pakketten__item::before {
    content: "";
    position: absolute;
    top: 20px;          /* afstand tot boven */
    right: 20px;        /* afstand tot rechts */
    width: 30%;        /* grootte afbeelding */
    height: 100%;
    
    background-image: url("https://bbq.hweo.nl/wp-content/plugins/hex-woocommerce-bundle/assets/images/favicon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;

    opacity: 0.15;      /* transparantie */
    pointer-events: none;
}

.bezorggebied-pakketten__title {
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0 0 16px;
	color: #bb1826;
}

.bezorggebied-pakketten__content {
	font-size: 0.95rem;
}

/* ==========================================================================
   Sectie 3 – Content + CTA
   ========================================================================== */

.bezorggebied-content-cta {
	padding: 60px 0;
	background-color: #fafafa;
}

.bezorggebied-content-cta__grid {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 40px;
	align-items: center;
}

.bezorggebied-content-cta__title {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
	color: #222;
}

.bezorggebied-content-cta__body {
	margin-bottom: 24px;
}

.bezorggebied-content-cta__body p {
	margin: 0 0 12px;
}

.bezorggebied-content-cta__img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

/* CTA button */
.bezorggebied-cta-btn {
	display: inline-block;
	padding: 14px 32px;
	background-color: #e8491d;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: background-color 0.2s, transform 0.15s;
}

.bezorggebied-cta-btn:hover,
.bezorggebied-cta-btn:focus {
	background-color: #c73a12;
	color: #fff;
	transform: translateY(-1px);
	text-decoration: none;
}

/* ==========================================================================
   Footer blok
   ========================================================================== */

.bezorggebied-footer {
	padding: 30px 0;
	border-top: 1px solid #e5e5e5;
}

.bezorggebied-footer__title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 10px;
	color: #222;
}

.bezorggebied-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
}

.bezorggebied-footer__list a {
	color: #e8491d;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.bezorggebied-footer__list a:hover,
.bezorggebied-footer__list a:focus {
	color: #c73a12;
	text-decoration: underline;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
	.bezorggebied-pakketten__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.bezorggebied-hero__grid,
	.bezorggebied-content-cta__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.bezorggebied-hero__image {
		order: -1;
	}

	.bezorggebied-hero__title {
		font-size: 1.6rem;
	}

	.bezorggebied-content-cta__title {
		font-size: 1.4rem;
	}

	.bezorggebied-hero,
	.bezorggebied-pakketten,
	.bezorggebied-content-cta {
		padding: 40px 0;
	}
}
