/* ==========================================================================
   TCG & Pokémonbeurs Dendermonde - Custom Collector Theme (Tight Typography)
   ========================================================================== */

:root {
    --bg-page: #f6f2ec;
    --bg-tinted: #eee6db;
    --bg-card: #ffffff;
    --bg-dark: #1b222c;

    --text-dark: #221f1d;
    --text-muted: #6b645d;
    --text-light: #a8a096;

    --primary-navy: #1e293b;
    --primary-navy-hover: #0f172a;

    --gold-accent: #c28e2b;
    --gold-accent-hover: #a3721d;
    --gold-soft: #fef8eb;
    --gold-border: #e2c388;

    --border-warm: #e2d7c7;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --shadow-card: 0 4px 16px rgba(45, 38, 28, 0.06);
    --shadow-hover: 0 10px 28px rgba(45, 38, 28, 0.12);

    --font-main: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-tinted {
    background-color: var(--bg-tinted);
    border-top: 1px solid var(--border-warm);
    border-bottom: 1px solid var(--border-warm);
}

.text-center {
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

/* Announcement Banner */
.top-banner {
    background-color: var(--bg-dark);
    color: #e2d7c7;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.top-banner i {
    color: var(--gold-accent);
}

.navbar {
    position: sticky;
    top: 12px;
    z-index: 1000;
    width: min(1160px, calc(100% - 32px));
    margin: 12px auto 0;
    background-color: rgba(246, 242, 236, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-warm);
    border-radius: 999px;
    padding: 12px 0;
    box-shadow: var(--shadow-card);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 18px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold-accent), #8a5d10);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(194, 142, 43, 0.3);
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

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

.nav-panel {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-warm);
    border-radius: 14px;
    background: var(--bg-card);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.bar-top,
.bar-middle,
.bar-bottom {
    height: 3.5px;
    width: 28px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transform-origin: center;
    transition: all 0.5s ease;
}

.nav-toggle.is-open .bar-top {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open .bar-middle {
    opacity: 0;
    transform: translateX(10px);
}

.nav-toggle.is-open .bar-bottom {
    transform: translateY(-8px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-gold {
    background-color: var(--gold-accent);
    color: white;
    box-shadow: 0 4px 12px rgba(194, 142, 43, 0.25);
}

.btn-gold:hover {
    background-color: var(--gold-accent-hover);
    transform: translateY(-2px);
}

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

.btn-navy:hover {
    background-color: var(--primary-navy-hover);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

.hero-section {
    padding: 22px 0 40px;
}

.hero-section .container {
    padding: 0 20px;
}

.hero-card-container {
    width: 100%;
    background-color: var(--bg-dark);
    color: white;
    border-radius: var(--radius-lg);
    padding: 34px;
    border: 1px solid rgba(226, 195, 136, 0.7);
    box-shadow: 0 16px 40px rgba(27, 34, 44, 0.15);
    background-image: radial-gradient(circle at top right, rgba(194, 142, 43, 0.15), transparent 50%);
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.hero-host-logo {
    width: fit-content;
    margin-bottom: 18px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
}

.hero-host-logo img {
    display: block;
    width: 110px;
    max-width: 100%;
    height: auto;
}

    .hero-host-logo {
        margin-bottom: 14px;
        padding: 8px 10px;
    }

    .hero-host-logo img {
        width: 88px;
    }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.hero-side {
    display: flex;
}

.hero-side-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: calc(var(--radius-lg) - 4px);
    padding: 24px;
    backdrop-filter: blur(2px);
}

.hero-side-label {
    display: inline-flex;
    margin-bottom: 16px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f1d397;
}

.hero-meta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    border-top: none;
    padding-top: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(194, 142, 43, 0.2);
    color: #f1d397;
    border: 1px solid rgba(194, 142, 43, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.1rem;
    color: #c5cbd3;
    max-width: 720px;
    margin-bottom: 28px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item:first-child {
    border-top: none;
    padding-top: 0;
}

.meta-item i {
    font-size: 1.5rem;
    color: var(--gold-accent);
}

.meta-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
}

.meta-value {
    font-weight: 700;
    font-size: 0.98rem;
    color: #ffffff;
}

/* Sectie Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gold-accent);
    letter-spacing: 0.05em;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 4px;
    letter-spacing: -0.02em;
}

.section-subtext {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-top: 6px;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold-accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

.tcg-feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.tcg-feature-card:hover, .parking-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-accent);
}

.card-inner {
    border: 1px solid #f1e9dd;
    border-radius: calc(var(--radius-md) - 4px);
    padding: 28px 24px;
    height: 100%;
    background-color: #faf7f2;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--gold-soft);
    border: 1px solid var(--gold-border);
    color: var(--gold-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.card-inner h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.card-inner p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.ticket-grid {
    margin-bottom: 50px;
}

.ticket-stub-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
    transition: all 0.25s ease;
}

.ticket-stub-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-accent);
}

.stub-header {
    background-color: var(--bg-dark);
    color: white;
    padding: 24px;
    border-bottom: 2px dashed var(--gold-accent);
}

.ticket-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-accent);
    letter-spacing: 0.05em;
}

.ticket-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-top: 2px;
    letter-spacing: -0.02em;
}

.stub-body {
    padding: 28px 24px;
}

.ticket-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.price-gold {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-accent);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.ticket-perks {
    list-style: none;
}

.ticket-perks li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-perks i {
    color: var(--gold-accent);
    font-size: 0.85rem;
}

.stub-footer {
    padding: 0 24px 28px;
}

/* Tombola Banner */
.tombola-banner-card {
    background-color: var(--bg-card);
    border: 2px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-card);
    background-image: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
}

.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--gold-soft);
    color: var(--gold-accent);
    border: 1px solid var(--gold-border);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.tombola-details h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.tombola-details p {
    color: var(--text-muted);
    font-size: 0.94rem;
    max-width: 650px;
}

.tombola-action {
    text-align: center;
    flex-shrink: 0;
}

.tombola-price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-accent);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.tombola-price-tag span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.parking-photo-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.photo-container {
    height: 190px;
    position: relative;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dist-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(27, 34, 44, 0.9);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.card-content {
    padding: 24px;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

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

/* Locatie Grid */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 36px;
    align-items: center;
}

.location-info-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.loc-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--bg-card);
    padding: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-warm);
}

.info-row i {
    font-size: 1.3rem;
    color: var(--gold-accent);
    margin-top: 2px;
}

.info-row strong {
    font-size: 0.95rem;
    display: block;
}

.info-row p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.map-frame {
    height: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border-warm);
    box-shadow: var(--shadow-card);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    background-color: var(--bg-dark);
    color: #a8a096;
    padding: 40px 0;
    font-size: 0.85rem;
    border-top: 2px solid var(--gold-accent);
}

@media (max-width: 992px) {
    .navbar {
        width: calc(100% - 24px);
        border-radius: 24px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-side-card {
        padding: 22px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .tombola-banner-card {
        flex-direction: column;
        text-align: center;
    }

    .tombola-details p {
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .navbar {
        top: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 10px 0;
    }

    .hero-section {
        padding: 0 0 40px;
    }

    .hero-section .container {
        padding: 0;
    }

    .nav-wrapper {
        padding: 0 16px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-panel {
        display: flex;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 0 18px;
        background: rgba(246, 242, 236, 0.98);
        border: 1px solid var(--border-warm);
        border-radius: 0;
        box-shadow: var(--shadow-hover);
        z-index: 1001;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, padding 0.35s ease;
    }

    .nav-panel.is-open {
        max-height: 320px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        padding: 18px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .nav-panel .nav-links,
    .nav-panel .nav-cta {
        display: flex;
    }

    .nav-cta {
        width: 100%;
    }

    .hero-card-container {
        width: 100%;
        border-radius: 0;
        padding: 24px 18px 28px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .section {
        padding: 50px 0;
    }
}