:root {
    --text: #1E1E1E;
    --donkergroen: #539a88;
    --lichtgroen: #C9E5D9;
    --donkeroranje: #D97A53;
    --oranje: #EBA25E;
    --lichtoranje: #FFE4CB;
    --achtergrond: #FFF3E8;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    background: var(--achtergrond);
    color: var(--text);
}

/* navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--achtergrond);
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(83, 154, 136, 0.2);
    position: sticky;
    top: 0;
}

/* Show/hide desktop vs mobile */
.desktop-only { display: none; }
.mobile-only { display: block; }

.logo-link img {
    height: 45px;
}

/* Hamburger Icon */
.hamburger {
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 4px;
    background: var(--donkergroen);
    border-radius: 4px;
    transition: 0.3s;
}

/* Hamburger animation */
.hamburger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* MOBILE MENU */
.nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--achtergrond);
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(83, 154, 136, 0.2);
}

.nav-links a {
    padding: 12px 0;
    text-decoration: none;
    color: var(--donkergroen);
    font-size: 20px;
    font-weight: 600;
}

.nav-links.open {
    display: flex;
}

/* Hero */
.hero {
    padding: 20px;
    text-align: center;
}

.hero-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid var(--donkeroranje);
    margin: 0 auto;
}

.hero-bubble {
    background: var(--lichtgroen);
    border: 6px solid var(--donkergroen);
    border-radius: 30px;
    padding: 20px;
    margin: -30px 20px 0 20px;
}

.hero-desktop {
    display: none;
}

h1, h2 {
    color: var(--donkergroen);
}

a{
    text-decoration: none;
    color: var(--text);
}

/* Over mij */
section { padding: 20px; }

.stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
    align-items: center;
}

.stat-block {
    width: 160px;
    height: 150px;
    border-radius: 50% 50% 10% 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat1 { background: var(--oranje); }
.stat2 { background: var(--donkeroranje); }
.stat3 { background: var(--lichtoranje); }

.over-mij h2{
    color: var(--donkeroranje);
    padding-left: 5%;
}

.over-mij p {
    line-height: 1.5;
    padding: 0 5%;
}

/* Reizen */

.reizenTitel {
    text-align: center;
    background: var(--lichtgroen);
    padding: 15px 0;
    margin-bottom: 0;
}

.filters {
    text-align: center;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 14px;
    margin: 4px;
    border-radius: 15px;
    border: 2px solid var(--donkeroranje);
    background: var(--lichtoranje);
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: var(--lichtgroen);
    border-color: var(--donkergroen);
    color: var(--text);
}

.filter-btn.active {
    background: var(--donkeroranje);
    color: white;
}

.reis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.travelCard , .wishCard {
    padding: 25px;
    text-align: center;
    font-size: 18px;
    border-radius: 16px;
    border: 3px solid var(--donkeroranje);
}

.travelCard.groen , .wishCard.groen {
    background: var(--lichtgroen);
    border-color: var(--donkergroen);
}

.travelCard.groen:hover , .wishCard.groen:hover {
    background: var(--donkergroen);
    border-color: var(--donkergroen);
}

.travelCard.groen:hover a , .wishCard.groen:hover a {
    color: white;
    font-weight: bold;
}

.travelCard.oranje , .wishCard.oranje {
    background: var(--lichtoranje);
    border-color: var(--donkeroranje);
}

.travelCard.oranje:hover , .wishCard.oranje:hover {
    background: var(--donkeroranje);
    border-color: var(--donkeroranje);
}

.travelCard.oranje:hover a , .wishCard.oranje:hover a {
    color: white;
    font-weight: bold;
}

/* Footer */

.footer {
    background: var(--donkergroen);
    color: var(--achtergrond);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Links */
.footer a {
    color: var(--achtergrond);
    text-decoration: none;
}

/* Kolommen */
.footer-left,
.footer-middle,
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Titel */
.footer h4 {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Logo */
.footer-left img {
    width: 40%;
    max-width: 180px;
    min-width: 120px;
    height: auto;
    display: block;
}

/* Rechterkolom items */
.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Tijdelijk icon */
.footer-icon {
    width: 16px;
    height: 16px;
    background: var(--achtergrond);
    border-radius: 4px;
}


/* RESONSIVNESS */

/* Tablet */
@media (min-width: 600px) {
    .stats {
        flex-direction: row;
        justify-content: center;
    }

    .reis-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer {
        padding: 60px 40px;
        gap: 40px;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        align-items: center;
    }
}

/* Desktop */
@media (min-width: 900px) {
    .navigation {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 2vw 10vw;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    /* desktop layout */
    .desktop-only {
        display: flex;
        justify-content: center;
        gap: 10vw;
    }

    .desktop-only a {
        font-size: 1.7vw;
        font-weight: 600;
        color: var(--donkergroen);
        text-decoration: none;
    }

    /* Hide mobile-only items */
    .mobile-only {
        display: none !important;
    }

    /* Remove mobile dropdown */
    .nav-links {
        display: none !important;
    }

    /* logo centered */
    .logo-link img {
        height: 45px;
        display: block;
        margin: 0 auto;
    }

    /* hero */
    .hero-mobile {
        display: none;
    }

    .hero-desktop {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 2% 0;
    }

    .hero-left {
        background: var(--lichtgroen);
        border: 1vw solid var(--donkergroen);
        border-left: 0px;
        padding: 10% 6% 10% 3%;
        margin-right: -10%;
        border-radius: 0 50% 50% 0;
        flex: 1;
    }

    .hero-left h1 {
        font-size: 3vw;
        margin-top: 0;
    }

    .hero-left p {
        font-size: 2vw;
        opacity: 0.8;
        margin-top: 5%;
    }

    .hero-right {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .hero-image-wrapper {
        width: 90%;
        max-width: 45vw;
        border: 1vw solid var(--donkeroranje);
        border-right: 0px;
        padding: 1vw;
        padding-right: 0;
        margin-left: -10%;
        border-radius: 50% 0 0 50%;
        background: var(--lichtoranje);
        overflow: hidden;
    }

    .hero-image-wrapper img {
        width: 100%;
        border-radius: 50% 0 0 50%;
        display: block;
    }

    .reis-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
        margin: auto;
    }

    .footer {
        padding: 90px 80px;
        flex-direction: row;
        justify-content: center;
        gap: 12vw;
        align-items: flex-start;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        flex: 1;
        align-items: flex-start;
        padding-top: 12px;
    }

    /* Logo optisch uitlijnen */
    .footer-left img {
        margin-top: 6px;
    }
}
