/* =========================================
   1. RESET & BASIS STIJLEN (Algemeen)
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

/* =========================================
   2. HEADER & NAVIGATIE (Gedeeld)
   ========================================= */
header {
    background-color: #905190;
    padding: 20px;
}

header .container {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 40px;
}

.logo {
    width: 100px;
    height: 100px;
    background-color: #ECBD4C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;
    color: #000000;
}

nav {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 70px;
    justify-content: end;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 40px;
    font-family: 'Meshed Display', serif;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.3;
}

/* =========================================
   3. INDEX PAGINA - HERO SECTION
   ========================================= */
h1 {
    font-size: 150px;
    margin-bottom: 30px;
    font-weight: normal;
    font-family: 'Meshed Display', serif;
}

.hero {
    background: linear-gradient(to bottom, #905190 0%, #905190 85%, rgba(155, 107, 158, 0.3) 100%);
    color: white;
    padding: 80px 0 120px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 300px 80px;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 150px;
    margin-bottom: 30px;
    font-weight: normal;
    font-family: 'Meshed Display', serif;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 450px;
}

.hero-image {
    background-color: #8EBFD9;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image svg {
    width: 100%;
    height: auto;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: right;
}

.scroll-indicator svg {
    width: 110px;
    height: 127px;
}

/* =========================================
   4. INDEX PAGINA - UITGELICHT WERK
   ========================================= */
.featured-work {
    background-color: white;
    padding: 80px 0;
}

.featured-work h2 {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: normal;
    font-family: 'Georgia', serif;
}

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

.work-item {
    position: relative;
}

.work-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

.work-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* =========================================
   5. PROJECTEN & WEBDESIGN PAGINA'S
   ========================================= */
.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

/* Zet de standaard project-item weer op twee kolommen (voor projecten.html) */
.project-item {
    display: grid;
    grid-template-columns: 1fr 1fr; /* DIT ZORGT VOOR DE TWEE KOLOMMEN NAAST ELKAAR */
    gap: 2rem;
    align-items: start;
}

/* Specifieke styling voor het item op webdesign.html (blijft ongewijzigd) */
.pvdo-item {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 2rem;                      
    align-items: start;             
}

/* Zorg dat op mobiel ALLES weer netjes onder elkaar komt */
@media (max-width: 768px) {
    .project-item,
    .pvdo-item {
        grid-template-columns: 1fr;
    }
}

/* Zorg dat op mobiel alles weer netjes onder elkaar komt */
@media (max-width: 768px) {
    .pvdo-item {
        grid-template-columns: 1fr;
    }
}
.project-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: serif;
}

.project-card {
    background-color: #ECBD4C;
    padding: 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Voegt extra ruimte toe onder elke gele kaart */
}


.project-card img {
    width: 80%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.arrow-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #7a9cb9;
    border: none;
    width: 40px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
}

/* Zorg dat de link de hele kaart vult en geen standaard link-stijl heeft */
.project-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Pas je bestaande .arrow-btn aan zodat het werkt als span binnen de link */
.arrow-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #7a9cb9;
    color: white; /* Zorg dat de tekst wit blijft */
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: none;
}

/* Optioneel: een hover effect op de hele kaart */
.project-card:hover {
    opacity: 0.9;
    cursor: pointer;
}

/* Pas je bestaande .arrow-btn aan zodat het werkt als span binnen de link */
.arrow-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #7a9cb9;
    color: white; /* Zorg dat de tekst wit blijft */
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: none;
}

/* Optioneel: een hover effect op de hele kaart */
.project-card:hover {
    opacity: 0.9;
    cursor: pointer;
}

/* =========================================
   6. CONTACT SECTION (Gedeeld onderaan)
   ========================================= */
footer.contact {
    background-color: #6B9EB5;
    color: white;
    padding: 60px 0 100px;
    margin-top:100px;
}

footer.contact h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: 'Meshed Display', serif;
}

footer.contact p {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: 'Aptos', serif;
}

/* =========================================
   7. RESPONSIVE DESIGN (Media Queries)
   ========================================= */
@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    nav {
        grid-template-columns: repeat(3, auto);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    header .container {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    nav {
        grid-template-columns: repeat(2, auto);
        gap: 15px;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-work h2,
    .contact h2 {
        font-size: 36px;
    }
}