:root {
    --primary-color: #005f73;
    --secondary-color: #0a9396;
    --light-bg-color: #f4f4f4;
    --dark-text-color: #333;
    --light-text-color: #fff;
    --star-color: #ffc107;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text-color);
    background-color: var(--light-text-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--light-bg-color);
}

/* Header & Nav */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text-color);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 95, 115, 0.8), rgba(0, 95, 115, 0.8)), url('retouch2.png') no-repeat center center/cover;
    height: 70vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
    margin-top: 70px; /* offset for fixed header */
}

#hero h1 {
    font-size: 3.5rem;
}

#hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto;
}

.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--light-text-color);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    background-color: #007f8c;
}

.whatsapp-btn {
    background-color: #25D366;
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    background-color: #1EBE57;
}

.whatsapp-btn i {
    margin-right: 0.5rem;
}

/* About Section */
#over-ons {
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
#diensten {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-item h3 {
    color: var(--primary-color);
}

/* Gallery Section */
#galerij {
    text-align: center;
}
.swiper-container {
    width: 100%;
    height: 500px; /* Adjust height as needed */
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--light-text-color);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: background-color 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: 900;
}

.swiper-pagination-bullet-active {
    background: var(--light-text-color);
}

/* Reviews Section */
#recensies {
    text-align: center;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}
.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.review-card .stars {
    color: var(--star-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.review-card cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    font-style: normal;
    color: var(--primary-color);
}

.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    background-color: #000032;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 3rem;
    font-size: 1rem;
}

.trustpilot-stars {
    background-color: #00b67a;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 3px;
    margin-right: 8px;
}

.trustpilot-stars span {
    color: white;
    font-size: 1rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: flex-start;
}
.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.contact-info .btn {
    color: var(--light-text-color);
    text-decoration: none;
}
.opening-hours {
    margin-top: 1.5rem;
}
.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* Footer */
footer {
    background-color: var(--dark-text-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    header nav {
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
    }
    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
    }
    .nav-links li {
        margin: 0.5rem 0;
    }
    #hero {
        margin-top: 115px; /* Adjust for taller header */
    }
    .swiper-container {
        height: 300px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}