/* =============================================
   Slagerij Louman-Jordaan — Premium Redesign
   Brand: Dark theme, deep red (#8B1A1A), gold (#C49A3C), cream
   Butcher since 1890 — Jordaan, Amsterdam
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --red: #8B1A1A;
    --red-light: #A82A2A;
    --red-dark: #6B1010;
    --gold: #C49A3C;
    --gold-light: #D4B060;
    --gold-dark: #A07828;
    --cream: #FAF6F0;
    --cream-dark: #F0E8DC;
    --warm: #E8D5C0;
    --dark: #1C1C1C;
    --dark-light: #2A2A2A;
    --dark-card: #242424;
    --text: #2D2A26;
    --text-light: #6B6560;
    --text-muted: #9B958E;
    --overlay: rgba(28, 28, 28, 0.6);
    --overlay-dark: rgba(28, 28, 28, 0.8);
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-gold: 0 8px 30px rgba(196,154,60,0.25);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-light); }

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

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

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    background: rgba(28,28,28,0.95);
    backdrop-filter: blur(10px);
}

nav.scrolled {
    background: rgba(28,28,28,0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
    padding: 0.5rem 2rem;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--cream);
    text-decoration: none;
    font-weight: 700;
}

.nav-logo span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.4rem 0;
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
    background: var(--red);
    color: white;
    padding: 0.55rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
    display: inline-block;
}

.nav-cta:hover { background: var(--red-light); color: white; transform: translateY(-1px); }

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, #2a1a1a 50%, var(--red) 100%);
    color: white;
    padding: 6rem 2rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(196,154,60,0.04)"/></svg>') repeat;
    background-size: 60px 60px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(196,154,60,0.15);
    border: 1px solid rgba(196,154,60,0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-red {
    background: var(--red);
    color: white;
}

.btn-red:hover {
    background: var(--red-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139,26,26,0.35);
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--dark);
}

.btn-gold-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
    border-color: white;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== HERO CARDS ===== */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 360px;
    transition: all var(--transition);
}

.hero-card:hover {
    border-color: rgba(196,154,60,0.3);
    background: rgba(255,255,255,0.08);
}

.hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: var(--gold);
}

.hero-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, #2a1a1a 60%, var(--red-dark) 100%);
    color: white;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(196,154,60,0.04)"/></svg>') repeat;
    background-size: 60px 60px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.75rem;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* ===== HIGHLIGHTS / CARDS ===== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== STORY SECTION ===== */
.story-section {
    background: var(--dark);
    color: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 { color: white; }
.story-content .section-label { color: var(--gold); }

.story-content p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #2a1a1a 0%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.4;
    border: 1px solid rgba(196,154,60,0.2);
}

/* ===== TIMELINE ===== */
.timeline-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.timeline-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    display: block;
}

.timeline-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.25rem;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--cream-dark);
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.product-emoji { font-size: 3rem; margin-bottom: 1rem; display: block; }

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-card p {
    color: var(--text-light);
    font-size: 0.88rem;
}

.product-card .tag {
    display: inline-block;
    background: rgba(196,154,60,0.12);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-top: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== INFO CARDS ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.info-card a { color: var(--red); font-weight: 500; }
.info-card a:hover { color: var(--gold); }

/* ===== HOURS TABLE ===== */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.hours-table tr { border-bottom: 1px solid var(--cream-dark); }
.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
    padding: 0.65rem 0;
    font-size: 0.95rem;
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--text);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-light);
}

.hours-table .closed { color: var(--red); font-weight: 500; }

/* ===== MAP ===== */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(139,26,26,0.15) 100%);
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== STORY BLOCKS (History page) ===== */
.story-block {
    margin-bottom: 4rem;
}

.story-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-block p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* ===== ORDER FEATURES ===== */
.order-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.order-step {
    text-align: center;
    padding: 2rem;
}

.order-step-number {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.order-step h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.order-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(196,154,60,0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .nav-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

footer h4 {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

footer ul { list-style: none; }
footer li { margin-bottom: 0.5rem; }

footer li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

footer li a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links { display: flex; gap: 1rem; }

.social-links a {
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    transition: color var(--transition);
}

.social-links a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(28,28,28,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        color: white !important;
        font-size: 1.2rem;
    }

    .nav-toggle { display: flex; }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }

    .story-grid,
    .story-block-grid { grid-template-columns: 1fr; gap: 2rem; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .timeline-row { justify-content: center; }

    nav { padding: 0.75rem 1rem; }
    nav.scrolled { padding: 0.5rem 1rem; }

    .page-hero { min-height: 280px; height: 40vh; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .btn-group { flex-direction: column; align-items: stretch; text-align: center; }
    .order-steps { grid-template-columns: 1fr; }
}

/* Mobile menu toggle animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
body.menu-open {
    overflow: hidden;
}


/* ===== CARD & PRODUCT PHOTOS (replacing emojis) ===== */
.card-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.product-photo {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.product-card {
    overflow: hidden;
}

.card {
    overflow: hidden;
}
