/* style.css - Professioneel & Responsive */

/* Variabelen voor kleuren en fonts */
:root {
    --bg-color: #000;
    --bg-gradient: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #1a1a1a 100%);
    --accent-color: #B17A50;
    --text-color: #fff;
    --card-bg: rgba(26,26,26,0.9);
    --blur-bg: rgba(0,0,0,0.6);
    --font: 'Montserrat', sans-serif;
}
h1 {
    font-size: 34px;
    font-weight: 900;
    background: linear-gradient(90deg, #e4c299, #b08d57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 222, 179, 0.4), 
                 0 0 35px rgba(255, 222, 179, 0.2);
    letter-spacing: 1.2px;
}

/* Global */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font);
    background: var(--bg-gradient);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}
a { text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent-color); }

.cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 5px;
    margin-top: 15px;
    transition: background 0.3s ease;
}
.cta:hover {
    background: #a0663d;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0,0,0,0.85);
    position: sticky;
    top: 0;
    z-index: 10;
}
header .logo { font-weight: 700; font-size: 24px; color: var(--accent-color); }
header nav a { margin-left: 30px; font-weight: 300; color: var(--text-color); }
header .burger { display: none; font-size: 28px; cursor: pointer; }



/* Hero */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

/* Afbeelding als achtergrond */
.hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top; 
    filter: brightness(0.5);

    transform: scale(1);
    transition: transform 8s ease;
}

.hero:hover .hero-img {
    transform: scale(1.1);
}

/* Gradient overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        180deg,
        rgba(177,122,80,0.4) 0%,
        rgba(0,0,0,0.7) 80%
    );
}

.hero-text {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    animation: fadeUp 1s ease forwards;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: clamp(1rem, 2.5vw, 22px);
    font-weight: 300;
    margin-bottom: 30px;
}

/* Nieuwe CTA-knop */
.hero-text .cta {
    display: inline-block;
    font-size: 1rem;
    padding: 14px 32px;
    background: linear-gradient(135deg, #b17a50, #a06840);
    color: #000000;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.hero-text .cta:hover {
    background: linear-gradient(135deg, #a06840, #8c5a35);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobiel */
@media (max-width: 480px) {
    .hero-text h1 { line-height: 1.2; }
    .hero-text p { line-height: 1.4; }
}



/* Wie ben ik */
.wie-ben-ik {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}
.wie-ben-ik img {
    width: 100%;
    max-width: 420px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.45);
    border: 2px solid rgba(177,122,80,0.4);
}
.wie-content {
    flex: 1 1 300px;
    max-width: 600px;
}
.wie-content h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 700;
}
.wie-content p {
    margin-bottom: 18px;
    font-size: 1rem;
    font-weight: 300;
    color: #ddd;
    line-height: 1.6;
}
.wie-content strong {
    color: var(--accent-color);
    font-weight: 600;
}
@media (max-width: 768px) {
    .wie-ben-ik {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .wie-content h2 { font-size: 1.8rem; }
    .wie-content p { font-size: 0.95rem; }
}

/* Wat kan ik voor je betekenen */
.wat-kan-ik {
    padding: 80px 20px;
    background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
    text-align: center;
}
.wat-kan-ik .container { max-width: 1200px; margin: 0 auto; }
.wat-kan-ik h2 {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 50px;
    font-weight: 700;
}
.wat-kan-ik .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.wat-kan-ik .card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 14px;
    max-width: 260px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}
.wat-kan-ik .card.active {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
@media(min-width: 769px) {
    .wat-kan-ik .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.7);
        background: linear-gradient(145deg, rgba(26,26,26,0.95), rgba(35,30,25,0.95));
    }
    .wat-kan-ik .card:hover .card-image img { transform: scale(1.05); }
}
.wat-kan-ik .card-image {
    width: 100%;
    height: 160px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.wat-kan-ik .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.wat-kan-ik .card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}
.wat-kan-ik .card p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .wat-kan-ik .cards { display: flex; flex-direction: column; align-items: center; gap: 20px; }
    .wat-kan-ik .card { max-width: 90%; }
}

/* Voor wie */
.voor-wie {
    padding: 80px 20px;
    background: linear-gradient(180deg, #000 0%, #111 100%);
    text-align: center;
}
.voor-wie .container { max-width: 1200px; margin: 0 auto; }
.voor-wie h2 { font-size: 36px; color: var(--accent-color); margin-bottom: 50px; font-weight: 700; }
.doelgroep-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.doelgroep-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 14px;
    flex: 1 1 260px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.doelgroep-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    background: linear-gradient(145deg, rgba(26,26,26,0.95), rgba(35,30,25,0.95));
}
.doelgroep-image { width: 100%; height: 160px; overflow: hidden; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.5); }
.doelgroep-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.doelgroep-card:hover .doelgroep-image img { transform: scale(1.05); }
.doelgroep-card h3 { font-size: 20px; color: #fff; margin-bottom: 12px; font-weight: 600; }
.doelgroep-card p { font-size: 14px; color: #ddd; line-height: 1.5; }

/* ===== Pakketten sectie ===== */
.pakketten {
  padding: 80px 20px;
  background: #0f0f0f;
  color: #f5f5f5;
}

.pakketten .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pakketten h2 {
  margin-bottom: 20px;
}

.pakketten > .container > p {
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ===== Cards layout ===== */
.pakket-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.pakket-card {
  position: relative;
  background: linear-gradient(145deg, #161616, #0b0b0b);
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pakket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
}

/* ===== Content ===== */
.pakket-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #d6b36a; /* brons */
}

.pakket-overlay p {
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.pakket-overlay p strong {
  color: #ffffff;
}

.pakket-overlay .focus {
  margin-top: 18px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== CTA ===== */
.pakketten .cta {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #d6b36a, #b8964e);
  color: #0f0f0f;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pakketten .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(214,179,106,0.35);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .pakket-cards {
    grid-template-columns: 1fr;
  }

  .pakket-card {
    text-align: center;
  }
}

/* Inspiratie / Referenties */
.inspiratie {
    padding: 80px 20px;
    background: linear-gradient(180deg, #000 0%, #111 100%);
    text-align: center;
}
.inspiratie .container { max-width: 1000px; margin: 0 auto; }
.inspiratie h2 { font-size: 36px; color: var(--accent-color); margin-bottom: 60px; font-weight: 700; }
.referenties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.referentie-card {
    background-color: var(--card-bg);
    padding: 30px 20px;
    border-radius: 14px;
    flex: 1 1 280px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    font-weight: 300;
    color: #ddd;
    line-height: 1.6;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.referentie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    background: linear-gradient(145deg, rgba(26,26,26,0.95), rgba(35,30,25,0.95));
}
.referentie-card span { display: block; margin-top: 15px; font-weight: 600; color: var(--accent-color); font-size: 14px; }

/* Contact */
.contact {
    background-color: #111;
    padding: clamp(60px, 8vw, 100px) 20px;
}

.contact-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    margin-bottom: 16px;
}

.contact-intro {
    max-width: 560px;
    margin: 0 auto 40px;

    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    background-color: #1a1a1a;
    color: #fff;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #b17a50;
    box-shadow: 0 0 0 2px rgba(177,122,80,0.25);
}

/* Button */
.contact-form .cta {
    align-self: center;
    padding: 14px 36px;
    background: linear-gradient(135deg, #b17a50, #a06840);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.contact-form .cta:hover {
    background: linear-gradient(135deg, #a06840, #8c5a35);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}



/* Footer */
/* Footer */
footer {
    background-color: #111;
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    padding: 40px 20px;
    text-align: center;
}

footer .footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

footer .footer-logo-contact {
    margin-bottom: 20px;
}

footer .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

footer .footer-contact p {
    margin: 3px 0;
    font-size: 0.9rem;
    color: #aaa;
}

footer .footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

footer .footer-socials a {
    color: rgba(177,122,80,0.4); 
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

footer .footer-socials a:hover {
    color: rgba(177,122,80,0.4);
    transform: scale(1.2);
}

footer .footer-copy {
    font-size: 0.8rem;
    color: #777;
}


/* Desktop */
header nav { display: flex; gap: 20px; align-items: center; }
header .burger { display: none; }

/* Mobile */
@media (max-width: 768px) {
    header nav {
        display: none;
        flex-direction: column;
        gap: 20px;
        background-color: #111;
        position: absolute; 
        top: 100%; 
        left: 0;        /* start links */
        right: 0;       /* eindigt rechts */
        width: 100%;    /* volle breedte */
        padding: 20px;
        border-radius: 0; /* geen afgeronde hoeken */
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        z-index: 20;    /* boven andere content */
    }
    header nav.active { display: flex; }
    header .burger { display: block; cursor: pointer; }
}


.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #c9a24d,
        #f5d27a,
        #c9a24d,
        transparent
    );
    margin: 60px 0;
}
#popup {
    display: flex; /* zichtbaar bij laden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* donkere overlay */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup-content {
    position: relative;
    background: url('images/construction.png') center/cover no-repeat;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    max-height: 85vh;
    overflow: hidden;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff; /* witte tekst */
}

.popup-content::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* donkere overlay voor contrast */
    z-index: 1;
}

.popup-content * {
    position: relative;
    z-index: 2; /* tekst en knop boven de overlay */
}


.popup-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #b97f50; /* bronze accent */
}

.popup-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

#explore-btn {
    background-color: #b97f50; /* bronze */
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
}

#explore-btn:hover {
    background-color: #a66d40;
}

.zoom-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 10s ease-in-out;
    animation: zoom 10s infinite alternate;
}

@keyframes zoom {
    from { transform: scale(0.9); }
    to { transform: scale(1); }
}
