/* Bistro Dreams - Main Stylesheet */
/* PAGE LOAD ANIMATION */

main {
    animation: slideUpFade 1s ease;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #141414;
    --color-bg-card: #1a1a1a;
    --color-primary: #c9a227;
    --color-primary-hover: #ddb52f;
    --color-text: #ffffff;
    --color-text-muted: #999999;
    --color-text-dark: #666666;
    --color-border: #2a2a2a;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.9s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { 
    font-size: 1.75rem; 
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}
h3 { font-size: 1.15rem; font-weight: 400; }
h4 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

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

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

/* Header */
header {
    text-align: center;
    padding: 2.5rem 1rem 1.5rem;
    background-color: var(--color-bg);
}

header .logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 0.75rem;
}

header .tagline {
    color: var(--color-text-muted);
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* Navigation */
nav {
    background-color: var(--color-bg-alt);
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--color-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
}

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

/* Main Content */
main {
    max-width: 8100;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Sections */
section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 2px;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        var(--color-bg-alt) 0%,
        var(--color-bg) 100%
    );
}

/* BACKGROUND IMAGE */
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
    transform: scale(1.05); /* subtiele zoom voor mooiere look */
}

/* DARK OVERLAY (voor betere leesbaarheid tekst) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* TITLE */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}
/* Interior Images */
.interior {
    padding: 0;
    background-color: transparent;
    margin-bottom: 2.5rem;
}

.interior-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 2px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* About Section */
.about {
    border-left: 3px solid var(--color-primary);
}

.signature {
    font-style: italic;
    color: var(--color-text-dark);
    margin-top: 1.5rem;
}

/* Mission Section */
.mission {
    background-color: var(--color-bg-card);
}

.highlight {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-top: 1.5rem;
    font-style: italic;
}

/* High Wine Section */
.high-wine {
    text-align: center;
}

.high-wine .subtitle {
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.price-highlight {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 500;
    margin: 1.5rem 0;
}

/* Menu Preview Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.menu-card {
    background-color: var(--color-bg);
    padding: 1.5rem;
    border-radius: 2px;
    text-align: center;
    border-top: 2px solid var(--color-primary);
}

.menu-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.menu-card p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.card-price {
    color: var(--color-text-dark);
    font-size: 0.85rem;
}

/* Music Section */
.music {
    text-align: center;
}

/* Contact Section */
.contact {
    text-align: center;
}

address {
    font-style: normal;
    margin: 1.5rem 0;
}

address p {
    margin-bottom: 0.5rem;
}
/* INFO ROW: CONTACT + HOURS */
.info-row {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* beide kolommen */
.contact,
.hours {
    flex: 1;
}

/* HOURS rechts uitlijnen */
.hours {
    text-align: right;
}

/* tabel netjes rechts houden */
.hours table {
    margin-left: auto;
    border-collapse: collapse;
}

/* kleine styling verbetering */
.hours td {
    padding: 0.5rem 0;
    border-bottom: 1px solid #2a2a2a;
}

/* mobiel onder elkaar */
@media (max-width: 480px) {
    .info-row {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hours {
        text-align: center;
    }

    .hours table {
        margin: 0 auto;
    }
}
/* Hours Table */
.hours table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    table-layout: fixed;
}

.hours td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.hours td:first-child {
    color: var(--color-text-muted);
}

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

.hours .note {
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Gift Section */
.gift {
    text-align: center;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-alt) 100%);
    border: 1px solid var(--color-primary);
}

.gift h3 {
    color: var(--color-text-dark);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.gift h4 {
    color: var(--color-primary);
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.page-header h1 {
    margin-bottom: 0;
}

/* Menu Section */
.menu-section {
    padding: 1.5rem 2rem;
}

.section-note {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

/* Menu Items */
.menu-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.item-header h3 {
    margin-bottom: 0;
    color: var(--color-text);
}

.price {
    color: var(--color-primary);
    font-weight: 500;
    white-space: nowrap;
}

.description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0.5rem 0 0.25rem;
}

.description.note {
    font-size: 0.85rem;
}

.allergens {
    font-size: 0.8rem;
    color: var(--color-text-dark);
    margin-bottom: 0;
}

/* Allergenen Info */
.allergenen-info {
    background-color: var(--color-bg-card);
}

.allergen-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
    list-style: none;
    margin: 1.5rem 0;
}

.allergen-list li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.payment-note {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin-top: 1.5rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background-color: var(--color-primary);
    color: var(--color-bg);
}

.cta-section p {
    color: var(--color-bg);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cta-section .btn-primary {
    background-color: var(--color-bg);
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background-color: var(--color-text);
}

/* Agenda Page Styles */
.agenda-intro {
    text-align: center;
}

.agenda-events {
    padding: 1.5rem 2rem;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--color-bg);
    border-radius: 2px;
    border-left: 3px solid var(--color-primary);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 0.75rem;
    background-color: var(--color-bg-alt);
    border-radius: 2px;
}

.event-date .day {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dark);
}

.event-date .number {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.event-date .month {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.event-info {
    flex: 1;
}

.event-info h3 {
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.event-time {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.event-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.event-price {
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-bottom: 0;
}

.agenda-note {
    text-align: center;
    background-color: var(--color-bg-card);
}

.agenda-note h2 {
    margin-bottom: 1rem;
}

.agenda-note p {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.footer-content p {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-nav a:hover {
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero { padding: 3rem 1.5rem; }
    
    .interior-image {
        height: 300px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        gap: 0;
    }
    
    nav a {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    section {
        padding: 1.5rem;
    }
    
    .menu-section {
        padding: 1.5rem;
    }
    
    .allergen-list {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-date {
        flex-direction: row;
        gap: 0.5rem;
        min-width: auto;
        justify-content: flex-start;
    }
    
    .event-date .number {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 1rem 0.5rem;
    }
    
    section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .item-header {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .item-header .price {
        align-self: flex-start;
    }
    
    .interior-image {
        height: 250px;
    }
}
/* Scroll indicator */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
}

.mouse {
    width: 35px;
    height: 60px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 12px;
    background: white;
    border-radius: 10px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}
/* FOTO PAGINA */

./* FOTO PAGINA */

.gallery-intro {
    text-align: center;
    padding: 80px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.gallery-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #ccc;
}

/* GALLERY GRID */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
    align-items: start;
}

/* ITEM CONTAINER (BELANGRIJKSTE FIX) */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 350px; /* container bepaalt nu de hoogte */
    background-color: var(--color-bg-card);
}

/* IMAGE FIX (SAFARI SAFE) */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* SAFARI STABILITY FIX */
.gallery-item {
    transform: translateZ(0);
}


/* MOBILE */
@media screen and (max-width: 768px) {

    .photo-gallery {
        padding: 20px;
        gap: 15px;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-intro h2 {
        font-size: 32px;
    }
}