/*
Theme Name: My Theme
Theme URI: https://nielsjonker.com
Description: A minimal custom theme for nielsjonker.com
Version: 1.0.0
Author: Niels Jonker
Author URI: https://nielsjonker.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-theme
Domain Path: /languages
*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
	overflow-x: hidden;
}

a {
	color: #0073aa;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	margin-bottom: 0.5em;
	line-height: 1.2;
}

p {
	margin-bottom: 1em;
}

/* Header */
.site-header {
	background-color: #f5f5f5eb;
  	padding: 0.3rem 0;
	border-bottom: 1px solid #fff;
	position: absolute;
	width: 100%;
	z-index: 100;
}

.site-title {
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 0;
}

.site-title a {
	color: #333;
}

.site-title a:hover {
	text-decoration: none;
}

/* Site branding (logo + title) */
.site-branding { display:flex; align-items:center; gap:12px; }
.site-logo { flex: 0 1 220px; min-width: 0; display:flex; align-items:center; }
.site-logo img { max-height:60px; height:auto; width:auto; display:block; max-width:100%;
	/* allow logo to scale down responsively when space is limited */
	max-height: clamp(30px, 8vw, 60px);
}
.site-branding-text { display:inline-block; min-width:0; }

/* Primary navigation layout */
.site-header .container.site-branding {
	display: flex;
	align-items: center;
	gap: 24px;
	position: relative; /* allow absolutely positioned hamburger */
}

.primary-navigation {
	flex: 1 1 auto;
	min-width: 0; /* allow flex children to shrink */
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: flex-start; /* left-aligned; 'more' sits at far right via margin-left:auto */
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.primary-menu li {
	margin: 0 12px;
}

.primary-menu li a {
	display: inline-block;
	padding: 10px 8px;
	color: #333;
	text-decoration: none;
	font-weight: 600;
}

.primary-menu li a:hover,
.primary-menu li.current-menu-item > a {
	color: #81ddb8;
}

/* Make sure logo and menu items are vertically centered relative to each other */
.site-logo img,
.primary-navigation {
	vertical-align: middle;
}

/* Responsive: stack menu on small screens */
@media (max-width: 768px) {
	/* On tablet and below, allow hamburger and logo to share row; if space is tight logo scales */
	.site-header .container.site-branding {
		flex-direction: row;
		align-items: center;
	}
	.primary-navigation {
		width: auto;
	}
	.primary-menu {
		flex-direction: row;
		gap: 8px;
	}
	.primary-menu li { margin: 0 8px; }
}

.menu-toggle {
	display: none;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	font-size: 20px;
	cursor: pointer;
	padding: 8px 10px;
	z-index: 220;
}

.menu-toggle .hamburger { font-size: 24px; line-height: 1; }

.primary-navigation { transition: max-height 0.22s ease; }

.primary-menu .menu-more { position: relative; display: none; margin-left: auto; }
.primary-menu .menu-more.has-items { display: inline-flex; }
.primary-menu .more-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 20px;
	padding: 8px 6px;
}
.primary-menu .more-submenu {
	display: none;
	position: absolute;
	right: 0;
	top: 100%;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 6px 18px rgba(0,0,0,0.08);
	list-style: none;
	padding: 6px 8px;
	margin: 8px 0 0 0;
	min-width: 160px;
	z-index: 200;
}
.primary-menu .menu-more.open .more-submenu {
	display: block;
}
.primary-menu .more-submenu li { margin: 0; }
.primary-menu .more-submenu li a { display: block; padding: 8px 12px; color: #333; }
.primary-menu .more-submenu li a:hover { background:#f5f5f5; }

/* Small screens: show hamburger, hide normal menu by default */
@media (max-width: 768px) {
	/* show hamburger on tablet and below */
	.menu-toggle { display: inline-block; }
	/* Convert nav to a left sliding drawer */
	.primary-navigation {
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 280px;
		max-width: 80vw;
		background: #ffffff;
		box-shadow: 6px 0 24px rgba(0,0,0,0.12);
		transform: translateX(-100%);
		transition: transform 260ms ease;
		overflow-y: auto;
		padding: 1.5rem 1rem;
		z-index: 230;
	}
	.primary-navigation.open { transform: translateX(0); }
	.primary-menu { flex-direction: column; gap: 8px; }
}

/* Main Content */
.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
	box-sizing: border-box;
}

main {
	padding: 2rem 0;
	min-height: calc(100vh - 300px);
}

.post {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #ddd;
}

.post-title {
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
}

/* Page title overlay on featured image */
.page-content .post-title {
	position: relative;
	z-index: 10;
	color: white;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: -485px;
	padding: 0 2rem 2rem 2rem;
	text-align: left;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	min-height: 500px;
	pointer-events: none;
}

/* Responsive title sizing */
@media (max-width: 768px) {
	.page-content .post-title {
		font-size: 1.75rem;
		margin-bottom: -385px;
		min-height: 400px;
		padding: 0 1.5rem 1.5rem 1.5rem;
	}
}

@media (max-width: 480px) {
	.page-content .post-title {
		font-size: 1.25rem;
		margin-bottom: -235px;
		min-height: 250px;
		padding: 0 1rem 1rem 1rem;
	}
}

/* Featured image styling for pages */
.wp-post-image {
	width: 100vw !important;
	margin-left: calc(-50vw + 50%) !important;
	height: 500px !important;
	object-fit: cover !important;
	margin-bottom: 2rem !important;
	display: block !important;
}

@media (max-width: 768px) {
	.wp-post-image {
		height: 400px !important;
	}
}

@media (max-width: 480px) {
	.wp-post-image {
		height: 250px !important;
	}
}

.post-meta {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.post-content {
	line-height: 1.8;
}

.post-content img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Footer */
.site-footer {
	background-color: #f5f5f5;
	padding: 2rem 0;
	margin-top: 2rem;
	text-align: center;
	color: #666;
	font-size: 0.9rem;
	border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
	.site-title {
		font-size: 1.5rem;
	}

	main {
		padding: 1rem 0;
	}
}

/* ============================================
   FRONT PAGE - HERO & SECTIONS
   ============================================ */

.front-page-main {
	padding: 0;
}

.hero-section {
	padding: 0;
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
}

/* Hero section content */
.hero-section h2,
.hero-section .wp-block-heading,
.hero-section p,
.hero-section .button-group {
	position: relative;
}

.hero-section h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: white;
}

.intro-text {
	font-size: 1.1rem;
	line-height: 1.8;
	opacity: 0.95;
	width: 100%;
	overflow: visible;
}

/* Allow travel-hero-section to break out of container padding */
.intro-text .travel-hero-section {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	width: 100vw;
}

.travel-sections {
	padding: 2rem 0;
}

.travel-section {
	padding: 3rem 0;
	border-bottom: 1px solid #eee;
}

.travel-section:last-child {
	border-bottom: none;
}

.section-header {
	text-align: center;
	margin-bottom: 2rem;
}

.section-header h2 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.section-description {
	font-size: 1.05rem;
	color: #666;
	max-width: 500px;
	margin: 0 auto;
}

.section-preview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.section-cta {
	text-align: center;
}

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 1rem;
}

.btn-primary {
	padding: 12px 32px;
  background-color: #7bdcb5;
  color: #000000;
  font-size: 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
  font-family: "Rubik", Sans-serif;
  font-weight: 600;
}

.btn-primary:hover {
	text-decoration: none;
}

/* Button group with full-stretch behavior */
.button-group-full-stretch {
	/* Full-bleed section that remains responsive without causing horizontal overflow */
	position: relative;
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	padding: 3rem 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-sizing: border-box;
}

.button-group-full-stretch .btn-contact {
	padding: 12px 32px;
	background-color: #7bdcb5;
	color: #000000;
	font-size: 18px;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: opacity 0.3s ease;
	font-family: "Rubik", Sans-serif;
	font-weight: 600;
}

.button-group-full-stretch .btn-contact:hover {
	opacity: 0.8;
}

.button-group-full-stretch .btn-contact svg {
	width: 20px;
	height: 20px;
	fill: #000000;
}

/* Section with parallax background */
.section-with-parallax {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Hero Section with Parallax Background */
.hero-section-parallax {
	position: relative;
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	min-height: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, #7bdcb5 0%, #7bdcb5 100%);
	background-image: url(https://staging.nielsjonker.com/wp-content/uploads/Sandos_Playacar-zwembad-1-2.jpg);
	/* JavaScript handles parallax effect with scroll events */
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-bottom: 0;
	padding: 0;
	gap: 2rem;
}

.hero-section-parallax::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, #006ba1 0%, #7bdcb5 100%);
	opacity: 0.4;
	z-index: 1;
}

/* Hotels Title in Parallax Section */
.hero-section-parallax-title {
	position: relative;
	z-index: 3;
	font-size: 3rem;
	font-weight: 700;
	color: white;
	/*text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);*/
	margin: 0;
	text-align: left;
	padding-top: 4rem;
	padding-left: 2rem;
	width: 100%;
}

/* Container for image and bubble side by side */
.hero-parallax-content-wrapper {
	position: relative;
	z-index: 3;
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 1rem;
	width: 100% !important;
	max-width: none !important;
	flex-wrap: nowrap !important;
	margin: 0 !important;
	padding: 0;
}

/* Speech Bubble Text Overlay */
.hero-content-parallax {
	position: relative;
	z-index: 3;
	display: block !important;
	flex: 0 1 400px !important;
	width: auto !important;
	min-width: 250px !important;
	max-width: 450px !important;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
	font-size: 1rem;
	line-height: 1.5;
	color: #333;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	visibility: visible !important;
	height: auto !important;
	overflow: visible !important;
}

/* Button styling inside bubble */
.hero-content-parallax .btn {
	display: inline-block;
	margin-top: 1.5rem;
}

/* Speech bubble pointer on the LEFT side */
.hero-content-parallax::before {
	content: '';
	position: absolute;
	left: -12px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-right: 12px solid rgba(255, 255, 255, 0.85);
	z-index: 4;
}

/* Image styling */
.hero-content-left {
	position: relative;
	z-index: 3;
	flex: 0 0 auto !important;
	min-width: fit-content;
	display: flex !important;
	align-items: center !important;
	width: auto !important;
	max-width: none !important;
}

/* Override for bubble to take remaining space */
.hero-parallax-content-wrapper .hero-content-parallax {
	flex: 1 1 auto !important;
}

.hero-image {
	margin: 0;
	display: flex;
	align-items: flex-end;
}

.hero-image img {
	display: block;
	width: auto;
	height: auto;
	max-width: 180px;
	object-fit: contain;
	object-position: 0% 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.hero-section-parallax {
		min-height: 350px;
		padding: 2rem 1.5rem;
		gap: 1.5rem;
	}

	.hero-section-parallax-title {
		font-size: 2rem;
	}

	.hero-parallax-content-wrapper {
		flex-direction: column;
		gap: 1.5rem;
		max-width: 100%;
	}

	.hero-content-parallax {
		max-width: 90%;
		padding: 1.5rem;
		font-size: 1rem;
	}

	.hero-content-parallax::before {
		display: none;
	}
}

@media (max-width: 480px) {
	.hero-section-parallax {
		min-height: 300px;
		padding: 1.5rem 1rem;
		gap: 1rem;
	}

	.hero-section-parallax-title {
		font-size: 1.5rem;
	}

	.hero-parallax-content-wrapper {
		flex-direction: column;
		gap: 1rem;
	}

	.hero-content-parallax {
		max-width: 95%;
		padding: 1rem;
		font-size: 0.9rem;
	}

	.hero-content-parallax::before {
		display: none;
	}
}

/* Wavy Section Separator using clip-path */
.section-clip-top {
	clip-path: polygon(
		0% 50px, 1% 48px, 2% 46px, 3% 45px, 4% 44px, 5% 44px, 6% 45px, 7% 47px, 8% 50px, 9% 53px, 10% 56px,
		11% 59px, 12% 61px, 13% 61px, 14% 59px, 15% 56px, 16% 52px, 17% 48px, 18% 45px, 19% 43px, 20% 42px,
		21% 43px, 22% 45px, 23% 48px, 24% 52px, 25% 56px, 26% 59px, 27% 61px, 28% 61px, 29% 59px, 30% 55px,
		31% 50px, 32% 46px, 33% 43px, 34% 41px, 35% 41px, 36% 42px, 37% 45px, 38% 49px, 39% 53px, 40% 57px,
		41% 60px, 42% 61px, 43% 60px, 44% 57px, 45% 52px, 46% 48px, 47% 44px, 48% 41px, 49% 40px, 50% 40px,
		51% 41px, 52% 44px, 53% 48px, 54% 52px, 55% 57px, 56% 60px, 57% 61px, 58% 60px, 59% 56px, 60% 51px,
		61% 46px, 62% 42px, 63% 40px, 64% 39px, 65% 40px, 66% 42px, 67% 46px, 68% 50px, 69% 55px, 70% 59px,
		71% 61px, 72% 61px, 73% 59px, 74% 55px, 75% 50px, 76% 45px, 77% 41px, 78% 39px, 79% 38px, 80% 39px,
		81% 41px, 82% 45px, 83% 49px, 84% 54px, 85% 58px, 86% 61px, 87% 61px, 88% 59px, 89% 55px, 90% 49px,
		91% 44px, 92% 40px, 93% 38px, 94% 38px, 95% 40px, 96% 44px, 97% 49px, 98% 54px, 99% 59px, 100% 61px,
		100% 100%, 0% 100%
	);
}

.section-clip-bottom {
	background-color: #fff;
	clip-path: polygon(
		0% 62px, 1% 59px, 2% 54px, 3% 49px, 4% 44px, 5% 40px, 6% 37px, 7% 36px, 8% 36px, 9% 38px, 10% 41px,
		11% 45px, 12% 50px, 13% 54px, 14% 58px, 15% 60px, 16% 61px, 17% 60px, 18% 58px, 19% 54px, 20% 49px,
		21% 44px, 22% 40px, 23% 37px, 24% 35px, 25% 35px, 26% 37px, 27% 40px, 28% 44px, 29% 49px, 30% 53px,
		31% 57px, 32% 60px, 33% 61px, 34% 61px, 35% 59px, 36% 55px, 37% 50px, 38% 46px, 39% 42px, 40% 39px,
		41% 38px, 42% 38px, 43% 39px, 44% 42px, 45% 46px, 46% 50px, 47% 55px, 48% 59px, 49% 61px, 50% 61px,
		51% 60px, 52% 57px, 53% 52px, 54% 48px, 55% 43px, 56% 40px, 57% 37px, 58% 36px, 59% 36px, 60% 38px,
		61% 41px, 62% 45px, 63% 50px, 64% 54px, 65% 59px, 66% 61px, 67% 61px, 68% 60px, 69% 57px, 70% 52px,
		71% 48px, 72% 43px, 73% 39px, 74% 37px, 75% 36px, 76% 36px, 77% 38px, 78% 41px, 79% 45px, 80% 50px,
		81% 55px, 82% 59px, 83% 61px, 84% 61px, 85% 60px, 86% 57px, 87% 52px, 88% 48px, 89% 44px, 90% 41px,
		91% 39px, 92% 38px, 93% 39px, 94% 41px, 95% 44px, 96% 49px, 97% 54px, 98% 59px, 99% 61px, 100% 61px,
		100% 100%, 0% 100%
	);
	padding: 3rem 0;
}

/* Hide old separator elements if they exist */
.hero-separator,
.section-separator {
	display: none !important;
}

.hero-content {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0;
	min-height: 320px;
}

.hero-content-left {
	justify-content: flex-start;
}

.hero-image {
	margin: 0;
	flex-shrink: 0;
	align-self: flex-end;
}

.hero-image img {
	display: block;
	width: auto;
	height: auto;
	max-width: 180px;
	object-fit: contain;
	object-position: 0% 100%;
}

/* Travel Hero Section */
.travel-hero-section {
	position: relative;
	width: calc(100% + 60px);
	height: 900px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	margin-left: -30px;
	margin-right: -30px;
}

.travel-hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.travel-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 30px;
}

.travel-hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
}

.travel-hero-content h1 span {
    color: #000000;
    background: #7bdcb5;
    padding: 0 10px;
    border-radius: 4px;
}

.travel-hero-content p {
    font-size: 18px;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.travel-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.travel-hero-buttons .btn {
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.travel-hero-buttons .btn-primary {
    background-color: #7bdcb5;
    color: #000000;
}

.travel-hero-buttons .btn-primary:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.travel-hero-buttons .btn-secondary {
    background-color: white;
    color: #000000;
    border: 2px solid #7bdcb5;
}

.travel-hero-buttons .btn-secondary:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 1023px) {
    .travel-hero-section {
        height: 600px;
    }

    .travel-hero-content h1 {
        font-size: 50px;
    }

    .travel-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .travel-hero-buttons .btn {
        min-width: 250px;
    }
}

/* ============================================
   CARDS - LAZY LOADING
   ============================================ */

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

/* Hotel cards grid - controlled by admin option */
.cards-grid.cards-grid-hotels {
	display: grid;
	grid-template-columns: repeat(var(--hotel-columns, 4), 1fr) !important;
	gap: 2rem;
	margin-bottom: 2rem;
}

/* Responsive hotel grid */
@media (max-width: 1200px) {
	.cards-grid-hotels {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

@media (max-width: 768px) {
	.cards-grid-hotels {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
}

@media (max-width: 480px) {
	.cards-grid-hotels {
		grid-template-columns: 1fr;
	}
}

/* Rondreizen cards grid - controlled by admin option */
.cards-grid-rondreizen {
	display: grid;
	grid-template-columns: repeat(var(--rondreizen-columns, 2), 1fr) !important;
	gap: 2rem;
	margin-bottom: 2rem;
	align-items: stretch;
}

/* Responsive rondreizen grid */
@media (max-width: 1200px) {
	.cards-grid-rondreizen {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

@media (max-width: 768px) {
	.cards-grid-rondreizen {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 480px) {
	.cards-grid-rondreizen {
		grid-template-columns: 1fr !important;
	}
}

.card {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
	background: white;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	position: relative;
}

.card.visible {
	opacity: 1;
	transform: translateY(0);
}

.card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	flex-grow: 1;
	flex: 1;
}

.card-link {
	display: block;
	padding: 0.75rem 1.5rem;
	background-color: #f5f5f5;
	color: #0073aa;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	font-size: 0.95rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.card-link:hover {
	background-color: #0073aa;
	color: white;
}

/* Make entire rondreizen card clickable */
.card-rondreizen .card-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	background: transparent;
	color: transparent;
	font-size: 0;
	z-index: 5;
}

.card-rondreizen .card-link:hover {
	background: transparent;
}

/* Show the button text at the bottom */
.card-rondreizen .card-link::after {
	content: 'Meer informatie →';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.75rem 1.5rem;
	background-color: #f5f5f5;
	color: #0073aa;
	text-align: center;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.card-rondreizen .card-link:hover::after {
	background-color: #0073aa;
	color: white;
}

.card-button {
	display: block;
	padding: 0.75rem 1.5rem;
	background-color: #0073aa;
	color: white;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	font-size: 0.95rem;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.card-button:hover {
	background-color: #005a87;
}

.card-button:active {
	background-color: #004675;
}

.card-image-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 66.66%; /* 3:2 aspect ratio */
	overflow: hidden;
	background-color: #f0f0f0;
	margin: 0;
}

.card-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.card-no-image .card-image {
	object-fit: contain;
}

.card-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
	color: #999;
	font-size: 0.9rem;
}

.card-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0);
	transition: background 0.3s ease;
}

.card:hover .card-image-overlay {
	background: rgba(0, 0, 0, 0.2);
}

/* Landing Cards Grid (e.g., Rondreizen cards) */
.landing-cards-grid {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 2rem !important;
	margin: 3rem 0 !important;
}

.landing-card-link {
	display: block !important;
	text-decoration: none;
	color: inherit;
	height: 100%;
	transition: transform 0.3s ease;
	flex: 1 1 calc(50% - 1rem) !important;
	min-width: calc(50% - 1rem) !important;
}

.landing-card-link:hover {
	transform: translateY(-8px);
}

.landing-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.landing-card-link:hover .landing-card {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.landing-card-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
}

.landing-card-content {
	padding: 2rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.landing-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #333;
	letter-spacing: 0.5px;
}

.landing-card-description {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.landing-card-button {
	display: inline-block;
	padding: 0.6rem 1.5rem;
	background-color: #7bdcb5;
	color: #000;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: background-color 0.3s ease;
}

.landing-card-link:hover .landing-card-button {
	background-color: #5fc59f;
}

/* Landing Cards - Mobile Responsive */
@media (max-width: 767px) {
	.landing-card-link {
		flex: 1 1 100% !important;
		min-width: 100% !important;
	}
}

.card-title {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: #333;
	line-height: 1.4;
}

.card-content {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.card-excerpt {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
	margin-bottom: 1rem;
	flex-grow: 1;
}

.card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: #999;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
	gap: 0.5rem;
}

.card-map-button {
	display: flex;
	align-items: center;
	gap: 5px;
	background: none;
	border: 1px solid #0073aa;
	color: #0073aa;
	padding: 0.35rem 0.75rem;
	border-radius: 3px;
	cursor: pointer;
	font-size: 0.8rem;
	font-weight: 600;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.card-map-icon {
	font-size: 1em;
	display: inline-block;
}

.card-map-text {
	display: none;
}

.card-map-button:hover {
	background-color: #0073aa;
	color: white;
}

@media (min-width: 500px) {
	.card-map-text {
		display: inline;
	}
}

.card-more {
	font-size: 0.85rem;
}

.card-type {
	display: inline-block;
	font-size: 0.75rem;
	background-color: #f0f0f0;
	color: #666;
	padding: 0.25rem 0.5rem;
	border-radius: 3px;
	text-transform: uppercase;
	font-weight: 600;
}

/* ============================================
   ARCHIVE PAGES
   ============================================ */

.archive-main {
	background-color: #f9f9f9;
	min-height: calc(100vh - 200px);
}

.archive-header {
	padding: 2rem 0;
	margin-bottom: 2rem;
	text-align: center;
}

.archive-header h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: white;
	display: none;
}

.archive-content {
	padding: 2rem 0;
}

.no-posts {
	text-align: center;
	padding: 3rem;
	font-size: 1.1rem;
	color: #666;
}

.pagination-wrapper {
	text-align: center;
	padding: 2rem 0;
	margin-top: 2rem;
	border-top: 1px solid #ddd;
}

.page-numbers {
	display: inline-block;
	margin: 0 0.5rem;
	padding: 0.5rem 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-decoration: none;
	color: #667eea;
	transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
	background-color: #667eea;
	color: white;
	border-color: #667eea;
}

/* ============================================
   SINGLE/DETAIL PAGES
   ============================================ */

.single-main {
	background-color: white;
}

.single-header {
	position: relative;
	height: 500px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	color: white;
	margin-bottom: 2rem;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	border-radius: 8px;
	overflow: hidden;
}

.header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.header-content {
	position: relative;
	z-index: 1;
	padding: 2rem;
	width: 100%;
}

.entry-title {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	color: white;
}

.entry-excerpt {
	font-size: 1.15rem;
	line-height: 1.6;
	opacity: 0.95;
	display: none;
}

.single-content-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.entry-content {
	line-height: 1.8;
	font-size: 1.05rem;
	margin-bottom: 3rem;
}

.entry-content p {
	margin-bottom: 1.5rem;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	margin: 1.5rem 0;
	border-radius: 4px;
}

/* ============================================
   UNIVERSAL FULL-STRETCH CLASS
   Breaks out of container padding and stretches
   edge-to-edge across full viewport width
   ============================================ */

.full-stretch,
.full-stretch img,
.full-stretch video,
.full-stretch iframe,
img.full-stretch,
video.full-stretch,
iframe.full-stretch {
	width: calc(100% + 60px) !important;
	margin-left: -30px !important;
	margin-right: -30px !important;
	max-width: none !important;
	display: block !important;
}

figure.full-stretch {
	width: calc(100% + 60px);
	margin-left: -30px;
	margin-right: -30px;
	margin-top: 0;
	margin-bottom: 1.5rem;
	max-width: none;
}

figure.full-stretch img {
	margin: 0;
	border-radius: 0;
	width: 100%;
	height: auto;
}

/* Ensure full-stretch videos and iframes maintain aspect ratio */
video.full-stretch,
iframe.full-stretch {
	height: auto;
	border-radius: 0;
}

/* Hotel Meta Info */
.hotel-meta-info,
.trip-meta-info {
	background-color: #f9f9f9;
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.meta-item {
	display: flex;
	flex-direction: column;
}

.meta-item .label {
	font-weight: 600;
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 0.25rem;
	text-transform: uppercase;
}

.meta-item .value {
	font-size: 1rem;
	color: #333;
}

.meta-item.website a {
	color: #667eea;
	font-weight: 600;
	text-decoration: none;
}

.meta-item.website a:hover {
	text-decoration: underline;
}

.entry-footer {
	border-top: 1px solid #ddd;
	padding-top: 1.5rem;
	margin-bottom: 2rem;
	color: #666;
	font-size: 0.95rem;
}

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #ddd;
}

.nav-previous,
.nav-next {
	padding: 1rem;
	background-color: #f9f9f9;
	border-radius: 4px;
}

.nav-previous a,
.nav-next a {
	color: #667eea;
	font-weight: 600;
	text-decoration: none;
}

.nav-previous a:hover,
.nav-next a:hover {
	text-decoration: underline;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

#travel-gallery,
.gallery-section {
	margin: 3rem 0;
	padding: 2rem 0;
	border-top: 2px solid #f0f0f0;
	border-bottom: 2px solid #f0f0f0;
}

.gallery-header {
	margin-bottom: 1.5rem;
	text-align: center;
}

.gallery-header h2 {
	font-size: 1.75rem;
	color: #333;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background-color: #f5f5f5;
	margin: 0;
	cursor: pointer;
	aspect-ratio: 4 / 3;
}

.gallery-link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.gallery-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumb {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	background: rgba(0, 0, 0, 0.5);
}

.zoom-icon {
	font-size: 1.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	color: white;
}

.gallery-item:hover .zoom-icon {
	opacity: 1;
}

.gallery-caption {
	padding: 0.75rem;
	background-color: #f9f9f9;
	font-size: 0.9rem;
	color: #666;
	text-align: center;
	display: none;
}

/* ============================================
   MAP SECTION
   ============================================ */

#travel-map,
.travel-map {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	margin: 2rem 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hotels archive map */
.hotels-archive-map-container {
	max-height: 400px;
	border-radius: 8px;
}

.map-section {
	margin: 3rem 0;
	padding: 2rem 0;
	border-top: 2px solid #f0f0f0;
	border-bottom: 2px solid #f0f0f0;
}

.map-header {
	margin-bottom: 1.5rem;
	text-align: center;
}

.map-header h2 {
	font-size: 1.75rem;
	color: #333;
}

/* Leaflet customizations */
.leaflet-control-attribution {
	font-size: 0.75rem;
}

.leaflet-popup-content-wrapper {
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
	font-size: 0.95rem;
	color: #333;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 2rem;
	}

	.section-header h2 {
		font-size: 1.75rem;
	}
	}

	.section-preview {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.cards-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}

	.single-header {
		height: 400px;
	}

	.entry-title {
		font-size: 1.75rem;
	}

	.archive-header h1 {
		font-size: 2rem;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.hotel-meta-info,
	.trip-meta-info {
		grid-template-columns: 1fr;
	}

	#travel-map,
	.travel-map {
		height: 300px;
	}
}
