/* Hoofdstylesheet voor Kyra's Portfolio */
/* Gebod #6: HTML en CSS zijn strict gescheiden */
/* Gebod #8: Betekenisvolle ID- en CLASS-attributes */
/* Gebod #9: Coding conventions worden gevolgd */

/* Import fonts - Gebod #10: Documenteer je code */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* Rosaline font moet je lokaal toevoegen of vervangen door een Google Font alternatief */

/* ===== ALGEMENE STIJLEN ===== */
body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #4c4b36;
}

/* ===== TYPOGRAFIE ===== */
.heading-decoratief {
    font-family: 'Rosaline', serif;
    font-weight: 400;
    color: #fff;
}

.heading-1 {
    font-size: 64px;
    line-height: 1.2;
}

.heading-2 {
    font-size: 50px;
    line-height: 1.3;
}

.heading-3 {
    font-size: 32px;
    line-height: 1.4;
}

.body-text {
    font-size: 19px;
    color: #d9d9d9;
    line-height: 1.6;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pagina-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    gap: 8px;
}

/* ===== HEADER SECTIE ===== */
.header-banner {
    width: 100%;
    height: 279px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-tekst {
    text-align: center;
    z-index: 2;
    position: relative;
}

/* ===== NAVIGATIE ===== */
.navigatie {
    width: 100%;
    background-color: transparent;
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-link {
    padding: 10px 20px;
    background-color: #82725b;
    color: #fff;
    border-radius: 8px;
    font-family: 'Georgia', serif;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: #6b5d4a;
}

.nav-knop {
    padding: 10px 20px;
    background-color: #82725b;
    color: #fff;
    border-radius: 8px;
    font-family: 'Georgia', serif;
    transition: background-color 0.3s ease;
}

.nav-knop:hover {
    background-color: #6b5d4a;
}

/* Mobile menu (verborgen standaard) */
.hamburger-menu {
    display: none;
}

/* ===== HOOFDINHOUD ===== */
.hoofd-sectie {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 48px 0;
}

/* ===== FEATURED WERK SECTIE ===== */
.featured-sectie {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.featured-kaart {
    width: 267px;
    height: 450px;
    border: 5px solid #82725b;
    border-radius: 30px;
    overflow: hidden;
}

.featured-afbeelding {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== OVER MIJ SECTIE ===== */
.over-mij-sectie {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.profiel-foto {
    width: 359px;
    height: 485px;
    border: 5px solid #82725b;
    border-radius: 160px 160px 0 0;
    object-fit: cover;
}

.over-mij-tekst {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 300px;
}

.tekst-sectie {
    display: flex;
    gap: 30px;
}

/* ===== CATEGORIE BOXEN ===== */
.categorie-container {
    display: flex;
    border-radius: 80px 0 0 80px;
    overflow: hidden;
}

.categorie-box {
    width: 400px;
    height: 449px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.categorie-box:hover {
    transform: scale(1.02);
}

.categorie-university {
    background-color: #2e1d0e;
}

.categorie-design {
    background-color: #323224;
}

.categorie-art {
    background-color: #2e1d0e;
}

/* ===== FOOTER ===== */
.footer {
    width: 100%;
    background-color: #2e1d0e;
    padding: 48px 0 24px 0;
    margin-top: auto;
}

.footer-inhoud {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-sectie {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    min-width: 300px;
}

.contact-input {
    width: 100%;
    max-width: 450px;
    padding: 12px 16px;
    background-color: #f5f1e8;
    border-radius: 8px;
    color: #503c35;
    opacity: 0.8;
}

.contact-textarea {
    min-height: 66px;
}

.social-media-sectie {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* ===== PORTFOLIO PAGINA ===== */
.categorie-filter-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 24px 0;
    flex-wrap: wrap;
}

.filter-knop {
    padding: 8px 32px;
    background-color: #82725b;
    color: #fff;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 19px;
    letter-spacing: 0.14em;
    transition: all 0.3s ease;
}

.filter-knop:hover {
    background-color: #6b5d4a;
    transform: translateY(-2px);
}

.filter-actief {
    background-color: #2e1d0e;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(267px, 1fr));
    gap: 24px;
    padding: 24px;
    margin-bottom: 48px;
}

.portfolio-kaart {
    width: 267px;
    height: 372px;
    border-radius: 25px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.portfolio-kaart:hover {
    transform: translateY(-5px);
}

.kaart-afbeelding {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
    position: relative;
}

/* Overlay voor hover effect */
.kaart-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 29, 14, 0);
    display: flex;
    align-items: flex-start;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.portfolio-kaart:hover .kaart-info-overlay {
    background-color: rgba(46, 29, 14, 0.85);
}

.kaart-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.portfolio-kaart:hover .kaart-info {
    opacity: 1;
    transform: translateY(0);
}

.kaart-tekst {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    gap: 16px;
}

.werk-titel {
    color: #fff;
    font-size: 15px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
}

.werk-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.werk-datum,
.werk-categorie {
    color: #fff;
    font-size: 12px;
    font-family: 'Quicksand', sans-serif;
    text-align: right;
}

.kaart-lijn {
    width: 205px;
    height: 1px;
    background-color: #fff;
}

/* ===== POP-UP STYLING ===== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-afbeelding {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background-color: transparent;
    color: #fff;
    font-size: 40px;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.popup-close:hover {
    transform: rotate(90deg);
}

/* ===== ABOUT PAGINA ===== */
.about-inhoud {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 48px 24px;
}

.persoonlijk-sectie {
    display: flex;
    gap: 73px;
    align-items: center;
    flex-wrap: wrap;
}

.portret-container {
    flex-shrink: 0;
}

.portret-foto {
    width: 360px;
    height: 650px;
    border: 5px solid #82725b;
    border-radius: 30px;
    object-fit: cover;
}

.persoonlijk-tekst {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 300px;
}

.tekst-blok {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sectie-scheiding {
    width: 100%;
    height: 1px;
    background-color: #595959;
    border: none;
    margin: 24px 0;
}

.tos-sectie {
    display: flex;
    gap: 109px;
    align-items: center;
    flex-wrap: wrap;
}

.tos-sectie-omgekeerd {
    flex-direction: row;
}

.tos-tekst {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 300px;
}

.tos-lijst {
    list-style: none;
    padding-left: 16px;
}

.tos-lijst li {
    color: #d9d9d9;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.tos-lijst li::before {
    content: "• ";
    margin-right: 8px;
}

.tos-afbeelding {
    flex-shrink: 0;
}

.tos-foto {
    width: 267px;
    height: auto;
    border: 5px solid #82725b;
    border-radius: 30px;
    object-fit: cover;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .header-banner {
        height: 241px;
    }
    
    .heading-1 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .header-banner {
        height: auto;
        min-height: 200px;
    }
    
    .over-mij-sectie {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .categorie-box {
        width: 300px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    /* About pagina responsive */
    .about-sectie,
    .about-sectie-omgekeerd {
        flex-direction: column;
        gap: 32px;
    }
    
    .about-sectie .about-afbeelding-container,
    .about-sectie .about-tekst-container {
        flex: 1 1 100%;
    }
    
    .about-afbeelding {
        max-height: 500px;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .heading-1 {
        font-size: 36px;
    }
    
    .heading-2 {
        font-size: 32px;
    }
    
    .profiel-foto {
        width: 280px;
        height: 380px;
    }
    
    .categorie-container {
        flex-direction: column;
        border-radius: 40px;
    }
    
    .categorie-box {
        width: 100%;
        height: 300px;
    }
    
    .footer-inhoud {
        flex-direction: column;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    /* About pagina mobiel */
    .about-sectie {
        gap: 24px;
    }
    
    .sectie-scheiding {
        width: 80%;
    }
}