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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

/* HERO achtergrond */
.hero {
    height: 90vh;
    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 60px;
}

/* NAVIGATIE (desktop) */
.main-nav {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 900;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    list-style: none;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* HAMBURGER ICON (mobiel) */
.mobile-menu-icon {
    display: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 1200;
}

/* HERO TEKST */
.hero-content {
    color: white;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 12px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(to right, #25D366, #1ebe5d);
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

/* LOGO-KAART – FULL BUSINESS LOOK */
.logo-card {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #ffffff;
    padding: 30px 34px;
    border-radius: 20px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);
    z-index: 999;
    width: 460px;
    min-height: 230px;
}

.logo-img {
    width: 95px;
    border-radius: 14px;
    flex-shrink: 0;
}

.logo-info {
    font-size: 17px;
    line-height: 1.55;
}

.logo-phone {
    font-weight: bold;
}

/* WHATSAPP BUTTON – GROTER EN ZAKELIJK */
.whatsapp-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 12px 16px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 17px;
    text-align: center;
    width: fit-content;
}

/* ===== OVER ONS LAYOUT (tekst + collage) ===== */

.overons-wrapper {
    max-width: 1050px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

.overons-wrapper h2 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.overons-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.overons-tekst {
    flex: 2;
    font-size: 17px;
    line-height: 1.7;
}

.overons-tekst p {
    margin-bottom: 20px;
}

.overons-tekst ul {
    margin: 0 0 25px 20px;
    padding: 0;
    list-style-type: disc;
    font-size: 17px;
    line-height: 1.7;
}

.overons-tekst ul li {
    margin-bottom: 6px;
}

.overons-collage {
    flex: 1;
    display: flex;
    justify-content: center;
}

.overons-collage img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Project kaarten container */
.projecten-container {
    width: 100%;
    max-width: 1300px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* Kaart zelf */
.project-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #50c878;
}

/* Afbeelding styling */
.project-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* VIDEO IN PROJECT-KAART – ZELFDE FORMAAT ALS FOTO */
.project-card video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Tekst */
.project-card h3 {
    text-align: center;
    font-size: 20px;
    margin-top: 15px;
    font-weight: bold;
}

.project-card p {
    text-align: center;
    padding: 0 15px 20px;
    font-size: 15px;
    color: #333;
}

/* Hover effect */
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    border-top: 4px solid #ff7676;
}

/* Offerte knop container */
.offerte-btn-container {
    text-align: center;
    margin: 40px 0 70px;
}

/* Offerte knop wrapper */
.offerte-btn-wrapper {
    text-align: center;
    margin: 40px 0 80px;
}

/* Knop zelf */
.offerte-button {
    display: inline-block;
    padding: 16px 34px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    background: #28b56a;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(40,181,106,0.4);
    transition: transform 0.25s ease;
}

/* Shine glow border */
.offerte-button::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 14px;
    padding: 3px;
    background: linear-gradient(
        130deg,
        #28b56a,
        #4af5b6,
        #28b56a,
        #4af5b6,
        #28b56a
    );
    background-size: 250% 250%;
    animation: offerteShine 4s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Hover */
.offerte-button:hover {
    transform: translateY(-3px);
}

/* Animatie */
@keyframes offerteShine {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Tablets / kleinere schermen */
@media (max-width: 900px) {
    .projecten-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .overons-layout {
        flex-direction: column;
    }

    .overons-collage {
        margin-top: 20px;
    }
}

/* Mobiel */
@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 80vh;
    }

    .hero-overlay {
        padding: 20px 16px;
    }

    .hero-content {
        margin-bottom: 40px;
        text-align: center;
    }

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

    /* LOGO CARD mobiel */
    .logo-card {
        left: 50%;
        top: 16px;
        transform: translateX(-50%);
        width: 92%;
        max-width: 420px;
        padding: 22px 18px;
        flex-direction: row;
        gap: 16px;
    }

    .logo-img {
        width: 70px;
    }

    .logo-info {
        font-size: 15px;
    }

    .whatsapp-btn {
        font-size: 15px;
        padding: 10px 14px;
    }

    /* HAMBURGER ICON tonen */
    .mobile-menu-icon {
        display: block;
        position: fixed;
        top: 18px;
        right: 18px;
        font-size: 28px;
        color: #333;
        background: #ffffff;
        padding: 6px 10px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.25);
        z-index: 2000;
    }

    /* Nav container op mobiel */
    .main-nav {
        position: static;
    }

    /* Menu standaard verbergen op mobiel */
    .main-nav ul {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.9);
        position: fixed;
        top: 130px;
        right: 16px;
        padding: 15px 25px;
        border-radius: 10px;
        gap: 14px;
        z-index: 1900;
    }

    /* Menu tonen wanneer 'show-menu' actief is */
    .main-nav ul.show-menu {
        display: flex;
    }

    .main-nav ul li a {
        color: #ffffff;
        font-size: 18px;
    }

    /* Offerte knop mobiel breder */
    .offerte-button {
        width: 90%;
        font-size: 18px;
        padding: 14px 20px;
    }

    .overons-collage img {
        max-width: 320px;
    }
}

/* Mobiel heel klein (projecten 1 per rij) */
@media (max-width: 500px) {
    .projecten-container {
        grid-template-columns: 1fr;
    }
}

/* ==== USP-BALK BOVEN DIENSTEN ==== */

.usp-bar {
    background: #111;
    color: #fff;
    padding: 14px 20px;
}

.usp-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.usp-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 15px;
}

.usp-list li::before {
    content: "✔ ";
    color: #28b56a;
    font-weight: bold;
}

/* ==== GENERIEKE SECTIE-HEADERS ==== */

.section-subtitle {
    text-align: center;
    color: #555;
    margin-top: -10px;
    margin-bottom: 30px;
    font-size: 15px;
}

/* ==== DIENSTEN-TEGELS ==== */

.diensten-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dienst-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 0 18px rgba(0,0,0,0.06);
    padding: 22px 20px;
    text-align: center;
}

.dienst-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.dienst-card p {
    font-size: 14px;
    color: #555;
}

/* ==== PAKKETTEN MET PRIJZEN ==== */

.pakketten-section {
    background: #f0f4f2;
    padding: 60px 20px 70px;
}

.pakketten-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.pakketten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 30px;
}

.pakket-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 22px 26px;
    box-shadow: 0 0 20px rgba(0,0,0,0.06);
    border-top: 4px solid #28b56a;
}

.pakket-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.pakket-price {
    font-size: 22px;
    font-weight: bold;
    color: #28b56a;
    margin: 6px 0 4px;
}

.pakket-card ul {
    margin: 12px 0 18px 18px;
    padding: 0;
    font-size: 14px;
    color: #444;
}

.pakket-card ul li {
    margin-bottom: 4px;
}

.pakket-note {
    font-size: 12px;
    color: #777;
}

/* ==== PROJECTEN-PREVIEW ==== */

.projecten-preview {
    margin-top: 40px;
}

.projecten-preview h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* ==== REVIEWS-BLOK ==== */

.reviews-section {
    max-width: 1100px;
    margin: 70px auto 80px;
    padding: 0 20px;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 25px;
}

.review-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 0 16px rgba(0,0,0,0.06);
    padding: 18px 18px 20px;
    font-size: 14px;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 8px;
}

.review-name {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
    font-size: 13px;
}

/* ==== FOOTER ==== */

.footer-main {
    background: #111;
    color: #eee;
    padding: 30px 20px 24px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    font-size: 14px;
}

.footer-col h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 5px;
}

.footer-col a {
    color: #eee;
    text-decoration: none;
    font-size: 14px;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin-top: 20px;
}

/* ==== EXTRA RESPONSIVE AANPASSINGEN ==== */

@media (max-width: 900px) {
    .diensten-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pakketten-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .usp-list {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .diensten-grid {
        grid-template-columns: 1fr;
    }
}
