/* ==========================================================
   Kennel de Kempenstreek – Stylesheet
   ==========================================================

   HERO FOTO: Verander de regel hieronder om je eigen foto te tonen:
   .hero-bg { background-image: url('../images/hero.jpg'); }
   ========================================================== */

/* ── Variabelen ─────────────────────────────────────────── */
:root {
    --amber:      #E8A020;
    --amber-dark: #C47A15;
    --amber-glow: rgba(232,160,32,.35);
    --brown:      #7B3A10;
    --cream:      #FDF8F0;
    --cream-2:    #FFF9F0;
    --text:       #1C1C1C;
    --muted:      #6B6B6B;
    --white:      #FFFFFF;
    --r:          16px;
    --sh1:        0 2px 10px rgba(0,0,0,.06);
    --sh2:        0 8px 36px rgba(0,0,0,.11);
    --sh3:        0 20px 64px rgba(0,0,0,.16);
    --ease:       .32s cubic-bezier(.4,0,.2,1);
    --nav-h:      74px;
    --fh:         'Playfair Display', Georgia, serif;
    --fb:         'Inter', system-ui, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--fb);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
svg  { display: block; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 96px 0; }

/* ── Scroll-reveal ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

/* ── Paw cursor trail ───────────────────────────────────── */
.paw-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 1.2rem;
    opacity: .65;
    transform: rotate(var(--rot, 0deg));
    animation: ptFade .9s ease forwards;
}
@keyframes ptFade {
    0%   { opacity: .65; transform: rotate(var(--rot)) scale(1); }
    100% { opacity: 0;   transform: rotate(var(--rot)) scale(.3) translateY(-18px); }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--fb);
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--ease), box-shadow var(--ease),
                background var(--ease), color var(--ease), border-color var(--ease);
    white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-amber {
    background: var(--amber);
    color: var(--white);
    box-shadow: 0 4px 20px var(--amber-glow);
}
.btn-amber:hover {
    background: var(--amber-dark);
    box-shadow: 0 8px 28px var(--amber-glow);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}
.btn-light-outline {
    background: var(--white);
    color: var(--amber-dark);
    font-weight: 700;
    border-color: transparent;
}
.btn-light-outline:hover { background: var(--cream); }

/* ── Section headings ───────────────────────────────────── */
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-title {
    font-family: var(--fh);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 12px;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
}
.section-head.center .section-sub { margin: 0 auto; }

/* ── Link arrow / link more ─────────────────────────────── */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--amber-dark);
    transition: color var(--ease), gap var(--ease);
}
.link-arrow:hover { color: var(--brown); gap: 8px; }

.link-more {
    font-size: .9rem;
    font-weight: 600;
    color: var(--amber-dark);
    transition: color var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
}
.link-more:hover { color: var(--brown); }


/* ===========================================================
   NAVBAR
   =========================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,.07);
    transition: background var(--ease), box-shadow var(--ease);
}
.navbar.scrolled {
    background: rgba(255,255,255,.99);
    box-shadow: var(--sh1);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    transition: opacity var(--ease);
}
.nav-logo:hover { opacity: .82; }

.logo-icon-wrap {
    width: 44px; height: 44px;
    background: var(--amber);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: transform var(--ease);
}
.nav-logo:hover .logo-icon-wrap { transform: rotate(-8deg) scale(1.08); }
.logo-paw { width: 24px; height: 22px; }

.logo-text {
    display: flex; flex-direction: column; line-height: 1.2;
}
.logo-name {
    font-family: var(--fh);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}
.logo-sub {
    font-size: .68rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Nav menu (desktop) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-link {
    display: block;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--muted);
    transition: color var(--ease), background var(--ease);
    white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: rgba(0,0,0,.04); }
.nav-link.active {
    background: var(--amber);
    color: var(--white);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
}
.nav-link.active:hover { background: var(--amber-dark); }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: background var(--ease);
}
.nav-toggle:hover { background: rgba(0,0,0,.05); }
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
@media (max-width: 920px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 14px 24px 28px;
        box-shadow: var(--sh3);
        z-index: 999;
        gap: 2px;
        animation: mobileMenuIn .22s ease;
    }
    .nav-menu.open { display: flex; }
    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 10px;
    }
    .nav-link.active { border-radius: 10px; }
}
@keyframes mobileMenuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ===========================================================
   HERO
   =========================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    will-change: transform;
    transform-origin: center center;

    background-image: url('../images/mainheader.png');
    background-size: cover;
    background-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        100deg,
        rgba(8,4,1,.72) 0%,
        rgba(8,4,1,.50) 48%,
        rgba(8,4,1,.06) 100%
    );
}

/* Floating SVG paw prints */
.paw-field {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.fp {
    position: absolute;
    color: rgba(232,160,32,.55);
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
    animation: fpFloat 10s ease-in-out infinite;
}
.fp-1 { width:40px; left:4%;  top:15%; animation-duration:9s;  animation-delay:0s; }
.fp-2 { width:28px; left:10%; top:55%; animation-duration:12s; animation-delay:1.8s; }
.fp-3 { width:50px; left:2%;  top:75%; animation-duration:8s;  animation-delay:3.2s; }
.fp-4 { width:34px; left:16%; top:35%; animation-duration:11s; animation-delay:0.9s; }
.fp-5 { width:22px; left:22%; top:70%; animation-duration:14s; animation-delay:4s; }
.fp-6 { width:44px; left:7%;  top:45%; animation-duration:10s; animation-delay:2.5s; }
.fp-7 { width:30px; left:28%; top:20%; animation-duration:13s; animation-delay:5s; }

@keyframes fpFloat {
    0%   { opacity: 0;   transform: translateY(20px) rotate(-12deg) scale(.7); }
    18%  { opacity: 1; }
    55%  { opacity: .6;  transform: translateY(-30px) rotate(12deg) scale(1); }
    85%  { opacity: .4; }
    100% { opacity: 0;   transform: translateY(-65px) rotate(25deg) scale(.6); }
}

.hero .container { position: relative; z-index: 3; }
.hero-content {
    max-width: 650px;
    padding: 60px 0 90px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: 22px;
}
.hero-badge svg { opacity: .85; flex-shrink: 0; }

.hero-title {
    display: flex;
    flex-direction: column;
    font-family: var(--fh);
    font-size: clamp(2.8rem, 6.2vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -.02em;
}
.title-white { color: var(--white); }
.title-amber {
    color: var(--amber);
    font-style: italic;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: .73rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.45);
}
.scroll-dot {
    width: 4px; height: 4px;
    background: rgba(255,255,255,.55);
    border-radius: 50%;
    animation: dotBounce 1.8s ease infinite;
}
@keyframes dotBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(8px); opacity: .3; }
}


/* ===========================================================
   FEATURES SECTION
   =========================================================== */
.section.features {
    background: var(--cream);
}
.cards-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.card {
    background: var(--white);
    border-radius: var(--r);
    padding: 36px 32px;
    box-shadow: var(--sh1);
    transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover {
    box-shadow: var(--sh2);
    transform: translateY(-5px);
}
.card-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    color: var(--white);
}
.card-icon svg { width: 28px; height: 28px; }
.icon-pink  { background: linear-gradient(135deg, #f06292, #e91e63); }
.icon-amber { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); }
.icon-blue  { background: linear-gradient(135deg, #42a5f5, #1976d2); }

.card h3 {
    font-family: var(--fh);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.card p { font-size: .95rem; color: var(--muted); line-height: 1.7; }


/* ===========================================================
   DOGS SECTION
   =========================================================== */
.section.dogs-preview {
    background: var(--white);
}
.dogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.dog-card {
    border-radius: var(--r);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--sh1);
    border: 1px solid rgba(0,0,0,.06);
    transition: box-shadow var(--ease), transform var(--ease);
}
.dog-card:hover {
    box-shadow: var(--sh2);
    transform: translateY(-5px);
}
.dog-img-wrap {
    position: relative;
    height: 240px;
    background: linear-gradient(135deg, #f5e6c8, #e8c88a);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.dog-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform .5s ease;
}
.dog-card:hover .dog-img-wrap img { transform: scale(1.06); }

.dog-img-placeholder {
    color: rgba(0,0,0,.2);
    display: flex; align-items: center; justify-content: center;
}
.dog-img-placeholder svg { width: 72px; height: 65px; }

/* In Memoriam */
.dog-card.in-memoriam .dog-img-wrap {
    filter: grayscale(30%) sepia(15%);
}
.memoriam-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.32);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 14px;
    color: rgba(255,180,180,.9);
}

.dog-info { padding: 24px; }
.dog-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.tag-gold     { background: rgba(232,160,32,.12); color: var(--amber-dark); }
.tag-pensioen { background: rgba(236,64,122,.1); color: #b5295a; }
.tag-nest     { background: rgba(56,142,60,.1); color: #2e7d32; }
.tag-memorial { background: rgba(0,0,0,.08); color: var(--muted); }

.dog-info h3 {
    font-family: var(--fh);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.dog-info p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}


/* ===========================================================
   NEWS SECTION
   =========================================================== */
.section.news { background: var(--cream-2); }

.news-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}
.news-head .section-title { margin-bottom: 0; }

.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--r);
    overflow: hidden;
    min-height: 320px;
    box-shadow: var(--sh2);
}
.news-content {
    background: var(--amber);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
.news-pill {
    display: inline-block;
    align-self: flex-start;
    background: rgba(255,255,255,.22);
    color: var(--white);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 5px 14px;
    border-radius: 50px;
}
.news-content h3 {
    font-family: var(--fh);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}
.news-content p {
    color: rgba(255,255,255,.88);
    font-size: .95rem;
    line-height: 1.7;
}

.news-img {
    background: linear-gradient(135deg, var(--amber-dark), var(--amber));
    overflow: hidden;
    position: relative;
    min-height: 220px;
    display: flex; align-items: center; justify-content: center;
}
.news-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.news-featured:hover .news-img img { transform: scale(1.05); }
.news-img-placeholder {
    color: rgba(255,255,255,.25);
}
.news-img-placeholder svg { width: 90px; height: 80px; }


/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
    background: var(--brown);
    color: rgba(255,255,255,.75);
}
.footer-top { padding: 64px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 48px;
}
.footer-col h4 {
    font-family: var(--fh);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col p {
    font-size: .9rem;
    line-height: 1.8;
    color: rgba(255,255,255,.68);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-paw { width: 30px; height: 27px; color: var(--amber); }
.footer-logo span {
    font-family: var(--fh);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,.12);
    max-width: 1180px;
    margin: 0 auto;
}
.footer-bottom {
    padding: 24px 0 28px;
    text-align: center;
}
.footer-love {
    font-size: .95rem;
    font-weight: 500;
    color: var(--amber);
    margin-bottom: 5px;
}
.footer-copy {
    font-size: .83rem;
    color: rgba(255,255,255,.42);
}
.heart {
    display: inline-block;
    animation: hb 1.5s ease infinite;
}
@keyframes hb {
    0%,100% { transform: scale(1); }
    15%      { transform: scale(1.38); }
    30%      { transform: scale(1); }
    45%      { transform: scale(1.18); }
}


/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 680px) {
    .section { padding: 64px 0; }
    .hero-ctas { flex-direction: column; align-items: flex-start; }
    .dogs-grid    { grid-template-columns: 1fr; }
    .cards-3      { grid-template-columns: 1fr; }
    .news-featured { grid-template-columns: 1fr; }
    .news-img     { min-height: 200px; }
    .news-content { padding: 32px 28px; }
    .news-head    { flex-direction: column; align-items: flex-start; }
    .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 400px) {
    .logo-sub  { display: none; }
    .logo-name { font-size: .9rem; }
}
