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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.top-menu {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 80px;
    flex: 1;
    justify-content: space-between;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 999;
    padding-top: 80px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.menu-items-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.menu-items-mobile li {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

.menu-items-mobile li a {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.menu-items-mobile li a:hover,
.menu-items-mobile li a.active {
    background-color: #f5f5f5;
    color: #4a90e2;
}

body.menu-open {
    overflow: hidden;
}

.admin-login-btn-container {
    position: absolute;
    top: 15px;
    right: 20px;
}

.admin-login-btn {
    padding: 8px 16px;
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.admin-login-btn:hover {
    background-color: #357abd;
}

.menu-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    position: relative;
}

.hamburger {
    display: none;
}

.logo {
    padding: 10px 0;
    flex: 0 0 auto;
    order: 2;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

.menu-items {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.desktop-menu {
    display: contents;
}

.menu-left {
    flex: 1 1 0;
    justify-content: flex-end;
    order: 1;
}

.menu-right {
    flex: 1 1 0;
    justify-content: flex-start;
    order: 3;
}

.menu-items li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 0;
    display: block;
    transition: color 0.3s, border-color 0.3s;
    border-bottom: 3px solid transparent;
}

.menu-items li a:hover,
.menu-items li a.active {
    color: #000;
    border-bottom: 3px solid #000;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

.hero {
    text-align: center;
    padding: 320px 0 320px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1em;
}

.content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content h1 {
    color: #000;
    margin-bottom: 20px;
    font-size: 2em;
}

.content h2 {
    color: #555;
    margin-bottom: 15px;
    margin-top: 30px;
}

.content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-page {
    background-color: #fff7f2;
}

.content-contact {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 80px 20px 60px;
    text-align: center;
}

.content-contact h1 {
    font-size: 2.4em;
    margin-bottom: 10px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: #c29c69;
    margin: 0 auto 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form label {
    text-align: left;
    font-size: 0.95rem;
    color: #666;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 16px;
    border: 1px solid #e4eee4;
    border-radius: 0;
    font-size: 1rem;
    background-color: #f8fbf7;
}

.contact-form button {
    margin-top: 10px;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    background-color: #e3a7b8;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    align-self: center;
}

.contact-form button:hover {
    background-color: #cf8da2;
}

.contact-note {
    margin-top: 15px;
    font-size: 0.75rem;
    color: #999;
}

.hero-home {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('uploads/website-joycesenses-001-scaled.jpeg');
    background-size: cover;
    background-position: top;
    color: #fff;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
}

.hero-home h1,
.hero-home p {
    color: #fff;
}

.hero-home p strong {
    font-weight: 300;
}

.hero-location {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('uploads/DSC08453.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 200px 20px;
}

.hero-location h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background-color: #fff;
    margin: 0 auto 30px;
}

.hero-location p {
    font-size: 1.2em;
    line-height: 1.7;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.offer-card {
    border-radius: 16px;
    padding: 40px 30px 50px;
    background-color: #fdeff3;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.offer-card h3 {
    color: #333;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.offer-card p {
    color: #7a7474;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.offer-card-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 30px;
}

.btn-link {
    display: inline-block;
    margin-top: 10px;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    text-decoration: underline;
}

.offer-card .btn-link {
    background-color: #d792ac;
    color: #fff;
    padding: 14px 40px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: auto;
}

.offer-card .btn-link:hover {
    background-color: #c57897;
    text-decoration: none;
}

.about-banner {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.about-banner-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-text {
    width: 100%;
}

.about-text p {
    margin-bottom: 15px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .menu-container {
        justify-content: center;
        padding: 10px 60px;
        position: relative;
        gap: 0;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    .logo {
        flex: 0 0 auto;
        text-align: center;
        padding: 5px 0;
        order: 2;
        margin: 0 auto;
    }
    
    .logo img {
        height: 60px;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .menu-left,
    .menu-right {
        display: none;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .admin-login-btn-container {
        position: absolute;
        top: 10px;
        right: 20px;
        z-index: 1002;
    }
    
    .admin-login-btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .container {
        padding: 20px 15px;
    }
    
    .hero {
        padding: 150px 0 150px;
    }
    
    .hero h1 {
        font-size: 2em;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 0.95em;
        padding: 0 10px;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    .content h1 {
        font-size: 1.8em;
    }
    
    .content h2 {
        font-size: 1.5em;
    }
    
    .hero-location {
        padding: 120px 20px;
    }
    
    .hero-location h2 {
        font-size: 1.8em;
    }
    
    .hero-location p {
        font-size: 1em;
    }
    
    .about-banner-image {
        height: 250px;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-card {
        padding: 30px 20px 40px;
    }
    
    .blog-list {
        margin-top: 20px;
    }
    
    .blog-post {
        flex-direction: column;
        gap: 20px;
        padding: 30px 0;
    }
    
    .blog-image-wrapper {
        width: 100%;
    }
    
    .blog-image {
        height: 250px;
    }
    
    .blog-title {
        font-size: 1.5em;
    }
    
    .contact-form {
        padding: 0 10px;
    }
    
    .content-contact h1 {
        font-size: 2em;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
}

/* Contact-form feedback styling (geïnspireerd op wpcf7) */
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}


