/* ============================================================
   Istanbul Grillroom — Verkooplandingspagina
   Wit thema + rode accenten (conform referentiedesign)
   ============================================================ */

/* ===== VARIABELEN ===== */
:root {
    --white:      #FFFFFF;
    --light:      #F7F7F7;
    --dark:       #1A1A1A;
    --red:        #C0392B;
    --red-hover:  #A93226;
    --text:       #1A1A1A;
    --body:       #444444;
    --muted:      #888888;
    --border:     #E8E8E8;
    --green-wa:   #25D366;
    --green-wa-h: #1DA950;
    --radius:     6px;
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
    --transition: 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

a {
    color: var(--dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--red); }

img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   NAVIGATIE
   ============================================================ */
#navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    padding: 0.9rem 0;
    transition: border-color var(--transition), box-shadow var(--transition), padding var(--transition);
    z-index: 1050;
}

#navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
    padding: 0.6rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.brand-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.18rem 0.55rem;
    border-radius: 3px;
}

.nav-link {
    color: #444 !important;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.45rem 0.65rem !important;
    transition: color var(--transition);
}

.nav-link:hover { color: var(--dark) !important; }

.btn-nav-cta {
    background: var(--dark);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius);
    border: 2px solid var(--dark);
    transition: all var(--transition);
}

.btn-nav-cta:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

/* ============================================================
   HERO — GESPLITST
   ============================================================ */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Linker paneel */
.hero-left {
    background: var(--dark);
    display: flex;
    align-items: center;
    padding: 8rem 3.5rem 4rem;
}

.hero-content { max-width: 520px; }

.hero-tag {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.1rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.hero-address {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.hero-address i { color: var(--red); font-size: 0.8rem; }

.hero-buttons {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #fff;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid #fff;
    transition: all var(--transition);
}

.btn-hero-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
    color: var(--dark);
    transform: translateY(-1px);
}

.btn-hero-outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.35);
    transition: all var(--transition);
}

.btn-hero-outline:hover {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    background: rgba(255,255,255,0.06);
}

/* Rechter paneel */
.hero-right {
    position: relative;
    overflow: hidden;
    background: #2a2a2a;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ============================================================
   GEDEELDE SECTIE-STIJLEN
   ============================================================ */
.section-pad { padding: 5rem 0; }
.bg-white   { background: var(--white); }
.bg-light   { background: var(--light); }
.bg-dark-section { background: var(--dark); }

.section-h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-body {
    color: var(--body);
    font-size: 0.97rem;
    line-height: 1.75;
}

.text-white    { color: #fff !important; }
.text-white-70 { color: rgba(255,255,255,0.72) !important; }

/* ============================================================
   OVER DE ZAAK — feature-kaarten
   ============================================================ */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1.2rem;
    height: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    border-color: #ccc;
    box-shadow: var(--shadow-sm);
}

.feature-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.55rem;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.84rem;
    color: var(--body);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   FOTOGALERIJ — masonry CSS Grid
   ============================================================ */
.gallery-header {
    margin-bottom: 1.75rem;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: 8px;
    grid-auto-flow: dense;
}

/* Gallery items */
.g-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background: #ddd;
    cursor: pointer;
}

.g-item::before {
    content: '\f030';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.15);
    font-size: 1.8rem;
    z-index: 0;
}

.g-item img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.28s ease;
    z-index: 2;
}

.g-overlay i {
    color: #fff;
    font-size: 1.3rem;
}

.g-item:hover img    { transform: scale(1.06); }
.g-item:hover .g-overlay { opacity: 1; }

/* Groot item: 2 kolommen × 2 rijen */
.g-large {
    grid-column: span 2;
    grid-row:    span 2;
}

/* ============================================================
   VOOR SERIEUZE HORECAONDERNEMERS
   ============================================================ */
.btn-light-solid {
    background: #fff;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius);
    border: 2px solid #fff;
    display: inline-block;
    transition: all var(--transition);
}

.btn-light-solid:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
    color: var(--dark);
    transform: translateY(-1px);
}

/* Bullet-lijst */
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bullet-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-left: 1.1rem;
    position: relative;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

.bullet-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
}

.bullet-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
}

/* ============================================================
   CONTACTFORMULIER
   ============================================================ */
.contact-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.contact-form .required { color: var(--red); }

.contact-form .form-control {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.7rem 0.9rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form .form-control::placeholder { color: #b0b0b0; }

.contact-form .form-control:focus {
    border-color: #999;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
    outline: none;
}

.contact-form textarea.form-control { resize: vertical; min-height: 110px; }

/* Knoppen */
.btn-dark-solid {
    background: var(--dark);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.72rem 1.6rem;
    border-radius: var(--radius);
    border: 2px solid var(--dark);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-dark-solid:hover {
    background: #333;
    border-color: #333;
    color: #fff;
    transform: translateY(-1px);
}

.btn-dark-solid:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.btn-whatsapp {
    background: transparent;
    color: var(--green-wa);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.72rem 1.4rem;
    border-radius: var(--radius);
    border: 2px solid var(--green-wa);
    display: inline-flex;
    align-items: center;
    transition: all var(--transition);
}

.btn-whatsapp:hover {
    background: var(--green-wa);
    color: #fff;
    transform: translateY(-1px);
}

/* Formulier-meldingen */
.form-message {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-message.success {
    background: #f0faf4;
    border: 1px solid #b7e4c7;
    color: #1e7e34;
}

.form-message.error {
    background: #fff5f5;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ============================================================
   VERKOPERSPROFIEL KAART
   ============================================================ */
.seller-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.seller-profile-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.seller-avatar-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.seller-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.seller-role {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

.seller-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.seller-contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}

.seller-contact-item:hover { color: var(--red); }

.seller-contact-item i {
    width: 16px;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.seller-section {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.seller-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.seller-detail {
    font-size: 0.9rem;
    color: var(--body);
    line-height: 1.5;
    margin: 0;
}

.seller-map {
    margin-top: 0.75rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.seller-options {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.seller-options li {
    font-size: 0.88rem;
    color: var(--body);
    padding-left: 1rem;
    position: relative;
}

.seller-options li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    padding: 3.5rem 0 0;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.footer-meta {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: #fff; }

.footer-contact {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer-contact a:hover { color: #fff; }

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--green-wa);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color var(--transition);
}

.footer-whatsapp:hover { color: #4cd964; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 3rem;
    padding: 1.25rem 0;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

/* ============================================================
   LIGHTBOX AANPASSINGEN
   ============================================================ */
.lb-data .lb-caption { font-family: 'Inter', sans-serif; }

/* ============================================================
   RESPONSIVE — TABLET (< 992px)
   ============================================================ */
@media (max-width: 991px) {
    /* Hero: verticaal stapelen */
    .hero-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto 380px;
        min-height: auto;
    }

    .hero-left {
        padding: 7rem 2rem 3rem;
    }

    .hero-right {
        order: -1;
        height: 380px;
    }

    /* Galerij: 3 kolommen */
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 170px;
    }
}

/* ============================================================
   RESPONSIVE — MOBIEL GROOT (< 768px)
   ============================================================ */
@media (max-width: 767px) {
    /* AOS: alle animaties uitschakelen — voorkomt onzichtbare secties */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        pointer-events: auto !important;
    }

    .section-pad { padding: 3.5rem 0; }

    .hero-left { padding: 6rem 1.5rem 2.5rem; }

    .hero-title { font-size: 2rem; }

    .hero-buttons {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .hero-buttons .btn {
        text-align: center;
        width: 100%;
    }

    /* Contact knoppen: full-width op mobiel */
    .d-flex.gap-3.flex-wrap {
        flex-direction: column;
    }
    .d-flex.gap-3.flex-wrap .btn {
        width: 100%;
        text-align: center;
    }

    /* Galerij: 2 kolommen */
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .seller-card { margin-top: 0; }
}

/* ============================================================
   RESPONSIVE — MOBIEL KLEIN (< 576px)
   ============================================================ */
@media (max-width: 575px) {
    .hero-right { height: 280px; }

    /* Galerij: 1 kolom op klein mobiel */
    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
    }

    .g-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .hero-title { font-size: 1.8rem; }
    .section-h2 { font-size: 1.5rem; }
}
