/* ============================================
   d'Oude Timmerie - Modern Light Theme
   Mobile-first responsive design
   ============================================ */

:root {
    /* Lichte grijstinten kleurenpalet */
    --bg: #f8f8f8;
    --bg-alt: #ffffff;
    --card: #ffffff;
    --accent: #4a4a4a;
    --accent-hover: #2d2d2d;
    --accent-light: #888888;
    --accent-soft: rgba(74, 74, 74, 0.08);
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --muted: #777777;
    --line: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    font-size: 16px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { 
    color: inherit; 
    text-decoration: none; 
    transition: color 0.2s ease;
}

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

/* ============================================
   Navigation - Mobile First
   ============================================ */

.hero-shell {
    position: relative;
    isolation: isolate;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.25rem;
    min-height: 60px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.nav-brand:hover {
    color: var(--accent-hover);
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.nav-toggle:hover {
    background: var(--accent);
    color: white;
}

.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 5rem 1.5rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    display: flex;
}

.nav-links.nav-links--open {
    transform: translateY(0);
    box-shadow: var(--shadow-lg);
}

.nav-links a {
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-align: center;
}

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

.btn-pill {
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.btn-pill:hover {
    background: var(--accent-hover) !important;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(45, 42, 38, 0.5) 50%,
        rgba(45, 42, 38, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: center;
    color: white;
}

.hero-tag {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.hero-tag::before,
.hero-tag::after {
    content: '';
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.hero h1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 2rem;
}

/* ============================================
   Buttons
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-outline {
    border-radius: 50px;
    padding: 0.9rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--line);
    color: var(--text);
    background: var(--bg-alt);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Main Content Shell
   ============================================ */

.shell { 
    padding: 3rem 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   Page Intro (for subpages)
   ============================================ */

.page-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.page-intro h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--text);
}

.page-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Hero Small (for subpages)
   ============================================ */

.hero-small {
    min-height: 40vh;
}

.hero-small .hero-tag {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-small .hero-tag::before,
.hero-small .hero-tag::after {
    display: none;
}

.hero-small h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.hero-small p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* ============================================
   Info Cards Grid
   ============================================ */

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.info-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.info-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-soft), rgba(120, 120, 120, 0.1));
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    color: var(--accent);
}

.info-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--text);
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* ============================================
   Feature List (for feestzaal etc.)
   ============================================ */

.feature-list {
    margin-top: 3rem;
    text-align: center;
}

.feature-list h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--text);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.feature-item:hover {
    border-color: var(--accent-light);
    transform: translateX(4px);
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--accent);
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-weight: 500;
    color: var(--text);
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
}

/* ============================================
   Agenda List
   ============================================ */

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agenda-month {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.agenda-month:first-child {
    margin-top: 0;
}

.agenda-month h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.agenda-month h3 i {
    font-size: 0.9rem;
}

.agenda-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.agenda-item:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-sm);
}

.agenda-item--highlight {
    border-left: 4px solid var(--accent);
    background: linear-gradient(135deg, var(--accent-soft), transparent);
}

.agenda-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.5rem;
    background: var(--accent-soft);
    border-radius: 12px;
}

.agenda-date .day {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.agenda-date .month {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.agenda-content {
    flex: 1;
}

.agenda-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--text);
}

.agenda-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.agenda-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.agenda-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.agenda-meta i {
    font-size: 0.75rem;
    color: var(--accent);
}

/* Weekly activities in highlight panel */
.weekly-activities {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.weekly-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--bg-alt);
    border-radius: 8px;
    font-size: 0.9rem;
}

.weekly-item strong {
    color: var(--text);
}

.weekly-item span {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .agenda-item {
        padding: 1.5rem;
    }
    
    .agenda-date {
        min-width: 80px;
        padding: 1rem;
    }
    
    .agenda-date .day {
        font-size: 2rem;
    }
    
    .agenda-content h4 {
        font-size: 1.25rem;
    }
}

/* ============================================
   Clubs Grid
   ============================================ */

.clubs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.club-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.club-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-md);
}

.club-card--featured {
    border-left: 4px solid var(--accent);
    background: linear-gradient(135deg, var(--accent-soft), transparent);
}

.club-card--highlight {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, var(--accent-soft), rgba(120, 120, 120, 0.05));
}

.club-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--accent-soft);
    border-radius: 16px;
    font-size: 1.5rem;
    color: var(--accent);
    padding-top: 0.9rem;
}

.club-content {
    flex: 1;
}

.club-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--text);
}

.club-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

.club-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 0.75rem;
    line-height: 1.6;
}

.club-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.club-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.club-meta i {
    color: var(--accent);
}

.club-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(120, 120, 120, 0.08);
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.club-notice i {
    color: var(--accent);
    margin-top: 0.1rem;
}

.club-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.club-gallery {
    margin-top: 2.5rem;
    display: grid;
    gap: 1rem;
}

.club-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.club-gallery--custom .club-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.club-gallery--custom .club-row--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 767px) {
    .club-gallery--custom .club-row,
    .club-gallery--custom .club-row--three {
        grid-template-columns: 1fr;
    }
}

/* Benefits list */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.benefits-list i {
    color: var(--accent);
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .clubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .club-card--highlight {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .clubs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .club-card--highlight {
        grid-column: span 1;
    }
}

/* ============================================
   Highlight Panel (Opening Hours)
   ============================================ */

.highlight-panel {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--accent-soft), rgba(120, 120, 120, 0.05));
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    border: 1px solid var(--line);
    display: grid;
    gap: 2rem;
}

.highlight-intro {
    display: flex;
    flex-direction: column;
}

.highlight-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-top: 1.5rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.highlight-logo:hover {
    opacity: 1;
}

.highlight-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.highlight-social {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.highlight-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent);
    transition: all 0.2s ease;
}

.highlight-social a:hover {
    background: var(--accent);
    color: #fff;
}

.highlight-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.highlight-intro p:not(.highlight-label) {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.hours {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.hours span {
    color: var(--muted);
    font-weight: 500;
}

.hours strong {
    color: var(--text);
    font-weight: 600;
}

.cta-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-stack .btn-outline {
    justify-content: flex-start;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
}

.cta-stack .btn-outline i {
    color: var(--accent);
    width: 20px;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-form-section {
    background: var(--card);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}

.contact-form-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--text);
}

.form-intro {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.form-group .required {
    color: #c53030;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group--date {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.form-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}

.form-footer .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Form messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-message--success {
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.3);
    color: #276749;
}

.form-message--success i {
    color: #48bb78;
}

.form-message--error {
    background: rgba(245, 101, 101, 0.1);
    border: 1px solid rgba(245, 101, 101, 0.3);
    color: #c53030;
}

.form-message--error i {
    color: #f56565;
}

/* Contact info sidebar */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--card);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.contact-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card h3 i {
    color: var(--accent);
}

.contact-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.contact-card a {
    color: var(--accent);
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.hours-compact {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.25rem 0.75rem;
    font-size: 0.85rem;
}

.hours-compact span {
    color: var(--muted);
}

.hours-compact strong {
    color: var(--text);
    font-weight: 500;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .form-footer .btn-primary {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 2.5rem;
    }
    
    .contact-form-section {
        padding: 2.5rem;
    }
}

/* ============================================
   Footer
   ============================================ */

/* ============================================
   Experience Banner (30 jaar)
   ============================================ */

.experience-banner {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.experience-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Anniversary Emblem - Jubileum stijl */
.anniversary-emblem {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emblem-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.emblem-ring::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.emblem-ring::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.emblem-decoration {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.emblem-decoration i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
}

.emblem-top {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.85;
    margin-bottom: -4px;
}

.emblem-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.emblem-bottom {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.85;
    margin-top: -2px;
}

.experience-text h2 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.experience-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 500px;
}

@media (min-width: 768px) {
    .experience-banner {
        padding: 2.5rem 3rem;
        text-align: left;
    }
    
    .experience-content {
        flex-direction: row;
        gap: 2.5rem;
    }
    
    .anniversary-emblem {
        width: 130px;
        height: 130px;
    }
    
    .emblem-number {
        font-size: 2.75rem;
    }
    
    .experience-text h2 {
        font-size: 1.75rem;
    }
}

/* ============================================
   Feature Highlights Grid
   ============================================ */

.feature-highlights {
    margin-top: 3rem;
    text-align: center;
}

.feature-highlights h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--text);
}

.section-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: var(--accent-soft);
    border-radius: 50px;
}

/* ============================================
   Mobile Bar Section
   ============================================ */

.mobile-bar-section {
    margin-top: 3rem;
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}

.mobile-bar-content {
    display: grid;
    grid-template-columns: 1fr;
}

.mobile-bar-text {
    padding: 2rem 1.5rem;
}

.mobile-bar-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    color: var(--text);
}

.mobile-bar-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.mobile-bar-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.mobile-bar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .mobile-bar-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .mobile-bar-text {
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .mobile-bar-image {
        aspect-ratio: auto;
        min-height: 300px;
    }
}

/* ============================================
   Tripel Promo
   ============================================ */

.beer-promo {
    margin-top: 3rem;
}

.beer-card {
    display: grid;
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(74, 74, 74, 0.06), rgba(74, 74, 74, 0.02));
    align-items: center;
}

.beer-text h2 {
    margin: 0.25rem 0 0.75rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.beer-text p {
    margin: 0 0 1rem;
    color: var(--text-light);
}

.beer-notes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: 0.5rem;
}

.beer-notes li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    background: var(--accent-soft);
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
}

.beer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.beer-photo img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    object-fit: cover;
}

@media (min-width: 768px) {
    .beer-card {
        grid-template-columns: 1.2fr 0.8fr;
        padding: 2.25rem;
    }

    .beer-notes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================
   News Section
   ============================================ */

.news-section {
    margin-top: 3rem;
}

.news-section > h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.news-section > h2 i {
    color: var(--accent);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.news-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.2s ease;
    position: relative;
}

.news-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-sm);
}

.news-card--featured {
    border-left: 4px solid var(--accent);
    background: linear-gradient(135deg, var(--accent-soft), transparent);
}

.news-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.news-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--text);
}

.news-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 1rem;
    line-height: 1.6;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.2s ease;
}

.news-link:hover {
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Parking Section
   ============================================ */

.parking-section {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--accent-soft), rgba(120, 120, 120, 0.05));
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    border: 1px solid var(--line);
}

.parking-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.parking-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    color: var(--text);
}

.parking-info > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.parking-sign {
    max-width: 260px;
    margin: 0 0 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.parking-sign img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.parking-directions {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.parking-directions h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.parking-directions h4 i {
    color: var(--accent);
}

.parking-directions ol {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

.parking-directions li {
    padding-left: 0.25rem;
}

.parking-map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 200px;
    background: var(--bg);
}

.parking-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

.parking-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    padding: 2rem;
    text-align: center;
    color: var(--muted);
}

.parking-map-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.parking-map-placeholder p {
    margin: 0 0 1rem;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .parking-section {
        padding: 2.5rem;
    }
    
    .parking-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* ============================================
   WW1 / Oorlogsverleden Section
   ============================================ */

.ww1-section {
    margin-top: 3rem;
}

.ww1-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.ww1-intro h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    color: var(--text);
}

.ww1-intro p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.ww1-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.ww1-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.ww1-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.ww1-card > i:first-child {
    font-size: 1.25rem;
    color: var(--accent);
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: 10px;
}

.ww1-card > div {
    flex: 1;
}

.ww1-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--text);
}

.ww1-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.ww1-card > i:last-child {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.25rem;
    transition: color 0.2s ease;
}

.ww1-card:hover > i:last-child {
    color: var(--accent);
}

@media (min-width: 768px) {
    .ww1-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ww1-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .ww1-card > i:first-child {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin: 0 auto 0.5rem;
    }
    
    .ww1-card > i:last-child {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .ww1-card {
        position: relative;
    }
}

/* ============================================
   Footer Base
   ============================================ */

/* ============================================
   Feature Note (picknick etc)
   ============================================ */

.feature-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
}

/* ============================================
   Garden & Catering Section (feestzaal)
   ============================================ */

.garden-catering-section {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.08), rgba(120, 120, 120, 0.05));
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    border: 1px solid rgba(72, 187, 120, 0.2);
}

.garden-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    color: var(--text);
}

.garden-text > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.garden-options {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.garden-options li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.garden-options li i {
    color: #48bb78;
    width: 20px;
    text-align: center;
    margin-top: 0.2rem;
}

.garden-options li strong {
    color: var(--text);
}

@media (min-width: 768px) {
    .garden-catering-section {
        padding: 2.5rem 3rem;
    }
}

/* ============================================
   Mobile Bar Promo Strip
   ============================================ */

.mobile-bar-promo {
    margin-top: 2rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.promo-content > i {
    font-size: 2rem;
    color: var(--accent);
}

.promo-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text);
}

.promo-content > div p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0.25rem 0 0;
}

@media (min-width: 768px) {
    .promo-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    .promo-content > i {
        font-size: 1.5rem;
        min-width: 50px;
    }
    
    .promo-content > div {
        flex: 1;
    }
    
    .promo-content .btn-outline {
        white-space: nowrap;
    }
}

.mini-footer {
    text-align: center;
    padding: 2.5rem 1.25rem 3rem;
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
}

.footer-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-partners img {
    height: 50px;
    width: auto;
    transition: opacity 0.2s ease;
    filter: grayscale(30%);
}

.footer-partners img:hover {
    filter: grayscale(0%);
}

.mini-footer p {
    margin: 0.25rem 0;
    color: var(--muted);
    font-size: 0.875rem;
}

.mini-footer a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mini-footer a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* ============================================
   Tablet Breakpoint (768px+)
   ============================================ */

@media (min-width: 768px) {
    .nav {
        padding: 1rem 2.5rem;
    }

    .nav-toggle { display: none; }

    .nav-links {
        position: static;
        transform: none;
        flex-direction: row;
        gap: 0.5rem;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
    }

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

    .hero {
        min-height: 50vh;
        padding: 3rem 2.5rem;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    .shell {
        padding: 4rem 2.5rem;
    }

    .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .info-card {
        text-align: left;
    }

    .info-icon {
        margin: 0 0 1.25rem;
    }

    .highlight-panel {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
        align-items: start;
    }
}

/* ============================================
   Desktop Breakpoint (1024px+)
   ============================================ */

@media (min-width: 1024px) {
    .nav {
        padding: 0.75rem clamp(2.5rem, 5vw, 5rem);
    }

    .nav-brand {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a {
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }

    .hero {
        min-height: 55vh;
    }

    .highlight-logo {
        width: 120px;
        height: 120px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .shell {
        padding: 5rem clamp(2.5rem, 5vw, 5rem);
    }

    .info-grid {
        gap: 2rem;
    }

    .info-card {
        padding: 2.5rem 2rem;
    }

    .highlight-panel {
        padding: 3rem;
    }
}

/* ============================================
   Animations & Micro-interactions
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.info-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}