/* assets/css/home.css */

/* ── Hero ── */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
 
.home-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2a1f00 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-size: cover;
    background-position: center;
    z-index: 0;
}
 
.home-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(232,160,32,0.12) 0%, transparent 60%);
}
 
.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.3) 100%);
    z-index: 1;
}
 
.home-hero-inner {
    position: relative;
    z-index: 2;
    padding: 120px 24px 180px;
}
 
.home-hero-tekst { max-width: 760px; }
 
.home-hero-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    border-left: 3px solid var(--color-primary);
    padding-left: 12px;
}
 
.home-hero-titel {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: var(--space-xl);
    letter-spacing: -1px;
}

.home-hero-titel span {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: regelOmhoog 0.8s ease forwards;
}

.home-hero-titel span:nth-child(1) { animation-delay: 0.1s; }
.home-hero-titel span:nth-child(2) { animation-delay: 0.25s; }
.home-hero-titel span:nth-child(3) { animation-delay: 0.4s; }
.home-hero-titel span:nth-child(4) { animation-delay: 0.55s; }

@keyframes regelOmhoog {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
.home-hero-beschrijving {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}
 
.home-hero-knoppen { display: flex; gap: var(--space-md); flex-wrap: wrap; }
 
.knop-pill-goud {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-secondary-dark);
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-sm);
    border-radius: 100px;
    transition: background var(--transition-normal);
}
.knop-pill-goud:hover { background: var(--color-primary-hover); color: var(--color-secondary-dark); }
 
.knop-pill-wit {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-sm);
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: border-color var(--transition-normal), background var(--transition-normal);
}
.knop-pill-wit:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
 
/* Stats balk */
.home-hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
}
 
.home-hero-stats-inner {
    display: flex;
    align-items: center;
    padding: 24px;
}
 
.home-hero-stat { display: flex; flex-direction: column; padding-right: var(--space-2xl); }
.home-hero-stat-getal { font-family: var(--font-heading); font-size: var(--font-size-2xl); font-weight: 900; color: var(--color-primary); line-height: 1; }
.home-hero-stat-label { font-size: var(--font-size-xs); color: rgba(255,255,255,0.5); letter-spacing: 0.5px; margin-top: 4px; text-transform: uppercase; }
.home-hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); margin-right: var(--space-2xl); }
.home-hero-scroll { margin-left: auto; display: flex; align-items: center; gap: var(--space-md); color: rgba(255,255,255,0.4); font-size: var(--font-size-xs); letter-spacing: 2px; }
.home-hero-scroll-lijn { width: 48px; height: 1px; background: rgba(255,255,255,0.3); }
 
/* ── Diensten sectie ── */
.home-diensten {
    background: var(--color-background);
    padding: var(--space-3xl) 80px;
}
 
.home-diensten .section-head {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
    gap: 16px;
}
 
.home-diensten .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text);
}
 
.home-diensten .section-title .light {
    font-weight: 400;
    color: var(--color-text-muted);
}
 
.home-diensten .eyebrow {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
}
 
.home-diensten .lede {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
 
/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
 
.svc {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #f1f1f1;
    border: 1px solid var(--color-border);
    min-height: 360px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .3s ease, box-shadow .3s ease;
}
 
.svc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
 
.svc.s-1 { grid-column: span 6; min-height: 420px; }
.svc.s-2 { grid-column: span 5; }
.svc.s-3 { grid-column: span 4; }
.svc.s-4 { grid-column: span 4; }
.svc.s-5 { grid-column: span 4; }
 
.svc h3 {
    font-size: clamp(24px, 3vw, 38px);
    letter-spacing: -0.025em;
    line-height: 1.0;
    margin: 0 0 14px;
    font-weight: 600;
}
 
.svc.s-1 h3 { font-size: clamp(24px, 3vw, 48px); }
 
.svc p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(20, 19, 15, 0.62);
    max-width: 38ch;
}
 
.svc .row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
}
 
/* Visual (grote kaart foto) */
.svc .visual {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    height: 260px;
    margin-top: 24px;
    background-size: cover;
    background-position: center;
}
 
.svc .visual::before {
    content: "VAKMANSCHAP · VAN DER VIS";
    position: absolute;
    left: 14px;
    bottom: 12px;
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: rgba(244, 244, 242, 0.5);
    z-index: 2;
}
 
/* Tags */
.svc .tags-line {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
 
.svc .tags-line span {
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--color-primary);
    color: var(--color-text);
}
 
/* ── Over Ons ── */
.home-over-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}
 
.home-over-stats { display: flex; flex-direction: column; gap: var(--space-lg); }
 
.home-over-stat-rij {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-background);
}
 
.home-over-stat-getal {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--color-primary);
    min-width: 80px;
}
 
.home-over-stat-label { font-size: var(--font-size-md); color: var(--color-text-muted); }
 
/* ── Portfolio ── */
.home-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}
 
.home-portfolio-kaart {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-surface);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
 
.home-portfolio-kaart:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.home-portfolio-afbeelding img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.home-portfolio-placeholder { background: var(--color-secondary-dark); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.2); font-size: var(--font-size-sm); }
.home-portfolio-info { padding: var(--space-md) var(--space-lg); }
.home-portfolio-info h3 { font-size: var(--font-size-md); margin-bottom: 4px; }
.home-portfolio-info p { font-size: var(--font-size-sm); color: var(--color-text-muted); }
 
.home-meer-link { text-align: center; margin-top: var(--space-xl); }
 
/* ── CTA Banner ── */
.home-cta-banner{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    margin: 0 auto;
    border-radius: var(--radius-xl);
}
.home-cta-banner h2 { 
    font-size: var(--font-size-2xl); 
    margin-bottom: var(--space-sm);
}
.home-cta-banner p  { font-size: var(--font-size-lg); opacity: 0.85;margin-bottom: var(--space-sm); }
 
/* ── Responsive ── */
@media (max-width: 980px) {
    .svc.s-1, .svc.s-2 { grid-column: span 12; }
    .svc.s-3, .svc.s-4, .svc.s-5 { grid-column: span 6; }
}
 
@media (max-width: 768px) {
    .home-hero-inner { padding: 80px 24px 200px; }
    .home-over-inner { grid-template-columns: 1fr; }
    .home-portfolio-grid { grid-template-columns: 1fr; }
    .home-hero-scroll { display: none; }
    .home-hero-stat-divider { display: none; }
    .home-hero-stat { padding-right: var(--space-lg); }
    .home-diensten { padding: var(--space-3xl) 20px; }
}
 
@media (max-width: 620px) {
    .svc.s-3, .svc.s-4, .svc.s-5 { grid-column: span 12; }
}