/* ========================================
   🪵 HOUTWERK PAGINA - MODERN & CLEAN
   ======================================== */

/* HERO SECTIE MET VIDEO */
.hero-wood {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 14, 12, 0.88) 0%, 
        rgba(26, 20, 16, 0.78) 50%,
        rgba(15, 14, 12, 0.88) 100%);
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-text-light);
    max-width: 800px;
    padding: 0 20px;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in animatie voor secties */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.hero-label {
    display: inline-block;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-text h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 3rem;
}

.hero-scroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.hero-scroll-btn:hover {
    border-color: var(--color-gold);
}

/* INTRO SECTIE */
.intro-section {
    padding: 6rem 0;
    background: var(--color-dark);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.intro-label {
    display: inline-block;
    font-size: 0.875rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: rgba(201, 169, 97, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.intro-text h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.intro-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(232, 223, 208, 0.85);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(26, 20, 16, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(26, 20, 16, 0.6);
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-5px);
}

.feature-item svg {
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.feature-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(232, 223, 208, 0.7);
}

/* INTRO SECTIE */
.intro-section {
    padding: 5rem 0;
    background: var(--color-dark);
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text .section-title {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1.3;
}

.intro-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    text-align: left;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* HOUTSOORTEN MET VIDEO'S */
.wood-types {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0D0B09 0%, #000000 100%);
    position: relative;
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.5);
}

.wood-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(232, 223, 208, 0.7);
    max-width: 650px;
    margin: 0.5rem auto 0;
    line-height: 1.7;
    font-weight: 300;
}

.wood-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.wood-card {
    background: linear-gradient(145deg, #1A1410 0%, #0F0E0C 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(201, 169, 97, 0.15);
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(201, 169, 97, 0.1) inset;
    position: relative;
    transform-style: preserve-3d;
}

.wood-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(201, 169, 97, 0.2),
        0 0 0 2px var(--color-gold) inset;
}

.wood-card-media {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #000;
    border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.wood-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.wood-card:hover .wood-image {
    transform: scale(1.2) rotate(2deg);
    filter: brightness(1.1) contrast(1.2);
}

.wood-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 14, 12, 0.05) 0%, rgba(15, 14, 12, 0.4) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 1;
    transition: background 0.3s ease;
}

.wood-card:hover .wood-card-overlay {
    background: linear-gradient(to bottom, rgba(15, 14, 12, 0.1) 0%, rgba(15, 14, 12, 0.5) 100%);
}

.wood-badge {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.wood-badge.premium {
    background: linear-gradient(135deg, #FFD700 0%, #C9A961 100%);
}

.wood-badge.exclusive {
    background: linear-gradient(135deg, #C9A961 0%, #8B7355 100%);
}

.wood-badge.modern {
    background: linear-gradient(135deg, #E8DFD0 0%, #C9A961 100%);
    color: var(--color-dark);
}

.wood-card-content {
    padding: 2rem 2rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #1A1410 0%, #0D0B09 100%);
}

.wood-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    letter-spacing: 0;
    transition: all 0.3s ease;
}

.wood-card:hover .wood-card-content h3 {
    color: var(--color-gold);
    transform: translateX(5px);
}

.wood-properties {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.wood-property {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.12);
    transition: border-color 0.3s ease;
}

.wood-card:hover .wood-property {
    border-color: rgba(201, 169, 97, 0.25);
}

.property-label {
    color: rgba(232, 223, 208, 0.6);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.property-value {
    color: var(--color-text-light);
    font-size: 0.875rem;
    text-align: right;
    font-weight: 700;
}

.wood-card:hover .wood-card-content h3 {
    color: var(--color-gold);
}

.wood-description {
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

/* SERVICES SECTIE */
.wood-services {
    padding: 6rem 0;
    background: #252015;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(to bottom, #1A1410 0%, #0F0E0C 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 97, 0.15);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.service-card h3 {
    font-size: 1.375rem;
    color: var(--color-text-light);
    margin-bottom: 0.875rem;
    font-weight: 700;
}

.service-card p {
    color: rgba(232, 223, 208, 0.75);
    line-height: 1.7;
    font-size: 0.975rem;
}

/* HOUTWERK PROJECTEN */
.wood-projects {
    padding: 8rem 0;
    background: var(--color-dark);
    position: relative;
    box-shadow: inset 0 15px 40px rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(201, 169, 97, 0.12);
    border-bottom: 1px solid rgba(201, 169, 97, 0.08);
}

.wood-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 40%, rgba(201, 169, 97, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.project-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 169, 97, 0.1) inset;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(201, 169, 97, 0.2),
        0 0 0 1px rgba(201, 169, 97, 0.5) inset;
}

.project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 40%, rgba(10,10,10,0.95) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.project-card:hover .project-image::before {
    opacity: 0.8;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.5s ease;
    filter: brightness(0.85) saturate(0.9) contrast(1.1);
}

.project-card:hover .project-image img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1.1) contrast(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2.5rem;
    z-index: 2;
    transform: translateY(15px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.project-card:hover .project-overlay h3 {
    color: var(--color-gold);
}

.project-overlay p {
    font-size: 1.05rem;
    color: rgba(232, 223, 208, 0.8);
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.project-card:hover .project-overlay p {
    opacity: 1;
}

/* PROCES SECTIE */
.wood-process {
    padding: 6rem 0;
    background: #0F0E0C;
    position: relative;
}

.wood-process .section-header {
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(26, 20, 16, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(26, 20, 16, 0.8);
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-5px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.process-step p {
    color: rgba(232, 223, 208, 0.7);
    line-height: 1.7;
    font-size: 0.925rem;
}

.step-arrow {
    font-size: 2rem;
    color: rgba(201, 169, 97, 0.4);
    flex-shrink: 0;
    align-self: center;
}

/* CTA SECTIE */
.wood-cta {
    padding: 6rem 0;
    background: var(--color-secondary);
    border-top: 1px solid rgba(201, 169, 97, 0.12);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-image {
    width: 100%;
    height: 100%;
    max-height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cta-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.cta-info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 100%;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.5rem;
    background: rgba(26, 20, 16, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    text-align: left;
    transition: all 0.3s ease;
}

.info-box:hover {
    background: rgba(26, 20, 16, 0.7);
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-3px);
}

.info-box svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.info-text p {
    font-size: 0.9375rem;
    color: rgba(232, 223, 208, 0.7);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    border: 2px solid var(--color-gold);
    letter-spacing: 0.02em;
}

.cta-btn.primary {
    background: var(--color-gold);
    color: var(--color-dark);
}

.cta-btn.primary:hover {
    background: transparent;
    color: var(--color-gold);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--color-text-light);
    border-color: var(--color-text-light);
}

.cta-btn.secondary:hover {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-wood {
        margin-top: 70px;
        height: 70vh;
    }
    
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .hero-text p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-wood {
        margin-top: 60px;
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .intro-text p {
        font-size: 1.1rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        min-height: 300px;
    }
    
    .cta-image {
        min-height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
}

.cta-box p {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 4px;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-dark);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
    .split-content {
        grid-template-columns: 1fr;
    }
    
    .wood-type-card {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item.wide {
        grid-column: span 1;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .portfolio-masonry {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item.tall {
        grid-row: span 1;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}


/* Intro Section */
.intro-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-secondary);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-top: var(--spacing-md);
}

/* Wood Types Section */
.wood-types-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-dark);
}

.wood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.wood-card {
    background-color: var(--color-secondary);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
    transition: transform var(--transition-normal);
}

.wood-card:hover {
    transform: translateY(-10px);
}

.wood-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.wood-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.wood-description {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Portfolio with images */
.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-image-wrapper img {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(
        135deg,
        var(--color-dark) 0%,
        var(--color-secondary) 100%
    );
}

.wood-description {
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-hero {
        margin-top: 70px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
        margin-top: 60px;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* PROJECT MODAL */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.project-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.project-modal-content {
    position: relative;
    background: #1A1410;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
}

.project-modal-close:hover {
    background: var(--color-gold);
    transform: rotate(90deg);
}

.project-modal-images {
    padding: 20px;
}

.project-main-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.project-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-thumbnail-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.project-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-thumb:hover {
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.project-modal-info {
    padding: 0 30px 30px;
}

.project-modal-info h2 {
    font-size: 2rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.project-status {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 97, 0.2);
    color: var(--color-gold);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.project-details-box {
    background: rgba(26, 20, 16, 0.6);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.project-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.project-detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: rgba(232, 223, 208, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
}

.detail-value {
    color: var(--color-text-light);
    font-weight: 700;
}

.project-description {
    margin-bottom: 30px;
}

.project-description h3 {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.project-description p {
    color: rgba(232, 223, 208, 0.8);
    line-height: 1.7;
}

.project-actions {
    display: flex;
    gap: 15px;
}

.btn-project-primary,
.btn-project-secondary {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-project-primary {
    background: var(--color-gold);
    color: var(--color-dark);
    border: 2px solid var(--color-gold);
}

.btn-project-primary:hover {
    background: transparent;
    color: var(--color-gold);
}

.btn-project-secondary {
    background: transparent;
    color: var(--color-text-light);
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.btn-project-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .project-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .project-main-image {
        height: 250px;
    }
    
    .project-thumbnail-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-actions {
        flex-direction: column;
    }
}

/* ========================================
   ✨ VISUELE VERBETERINGEN
   ======================================== */

/* HERO ACHTERGRONDEN */
.hero-houtwerk {
    background-image: url('../assets/images/houtwerk.jpg');
    background-size: cover;
    background-position: center 30%;
}

.hero-houtwerk::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(8, 6, 4, 0.82) 0%,
        rgba(20, 15, 10, 0.70) 50%,
        rgba(8, 6, 4, 0.82) 100%
    );
    z-index: 2;
}

.hero-houtwerk .hero-text {
    z-index: 3;
}

.hero-epoxy {
    background-image: url('../assets/images/epoxy.jpg');
    background-size: cover;
    background-position: center 40%;
}

.hero-epoxy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(5, 8, 18, 0.20) 0%,
        rgba(10, 20, 35, 0.40) 50%,
        rgba(5, 8, 18, 0.60) 100%
    );
    z-index: 2;
}

.hero-epoxy .hero-text {
    z-index: 3;
}

/* Scroll knop animatie */
.hero-scroll-btn svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* GOUDEN DECORATIEVE LIJN ONDER TITELS */
.section-title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin: 0.75rem auto 1.75rem;
    border-radius: 2px;
}

.intro-text .section-title-line {
    margin-left: 0;
}

/* INTRODUCTIE VERBETERING */
.intro-section {
    position: relative;
    overflow: hidden;
    background: var(--color-secondary);
    border-top: 1px solid rgba(201, 169, 97, 0.12);
    border-bottom: 1px solid rgba(201, 169, 97, 0.08);
}

.intro-section::after {
    content: none;
}

.intro-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 0;
}

.intro-text {
    flex: 1;
    text-align: left;
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.intro-text .section-title {
    text-align: left;
}

.intro-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.intro-text p {
    max-width: 70ch;
    line-height: 1.9;
    font-size: 1.05rem;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* PROJECTEN SECTIE VERBETERING */
.projects-grid {
    display: grid;
    /* Uses auto-fit with minmax for better responsiveness than hardcoded repeat(3) */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem; /* moved to right for standard elegant look */
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-gold);
    opacity: 0.5;
    font-family: var(--font-main);
    z-index: 2;
    transition: opacity 0.5s ease;
}

.project-card:hover .project-number {
    opacity: 1;
}

.project-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    color: var(--color-gold);
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateX(-15px) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.project-card:hover .project-arrow {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
    background: var(--color-gold);
    color: #000;
}

/* Let the earlier h3 styles handle hover states */

/* WOOD CTA VERBETERING */
.wood-cta {
    position: relative;
    overflow: hidden;
}

.wood-cta::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.3) 50%, transparent 100%);
}

.cta-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(201, 169, 97, 0.08);
}

.cta-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-text h2 {
    position: relative;
}

.cta-text h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin-top: 0.75rem;
    border-radius: 2px;
}

/* SECTION HEADER VERBETERING */
.section-header {
    position: relative;
}

.section-header .section-title-line {
    margin-left: auto;
    margin-right: auto;
}

/* RESPONSIVE AANPASSINGEN */
@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .intro-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ========================================
   HERO ACHTERGRONDEN — OVER ONS & VIDEO'S
   ======================================== */

.hero-about {
    background-image: url('https://images.unsplash.com/photo-1504148455328-c376907d081c?w=1920&q=85');
    background-size: cover;
    background-position: center 40%;
}

.hero-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,14,12,0.65) 0%, rgba(15,14,12,0.45) 60%, rgba(15,14,12,0.75) 100%);
    z-index: 2;
}

.hero-videos {
    background-image: url('https://images.unsplash.com/photo-1574717024453-354056afd6fc?w=1920&q=85');
    background-size: cover;
    background-position: center 35%;
}

.hero-videos::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,14,12,0.70) 0%, rgba(15,14,12,0.40) 60%, rgba(15,14,12,0.80) 100%);
    z-index: 2;
}
