/* Polished Wood Premium Design System (Bench Vibe) */
:root {
    --primary-color: #E67E22;
    /* Amber/Honey */
    --primary-dark: #A04000;
    --accent-color: #F1C40F;
    /* Gold varnish brightness */

    --wood-tint: rgba(0, 0, 0, 0.4);
    /* Darkening overlay for wood */
    --varnish-shine: rgba(255, 255, 255, 0.1);

    --text-color: #FFF;
    /* Light text on dark wood */
    --text-muted: #DDD;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --shadow-depth: 0 10px 30px rgba(0, 0, 0, 0.5);
    --border-varnish: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

body {
    font-family: var(--font-body);
    background-color: #3E2723;
    background-image: url('assets/polished_wood.png');
    background-size: 400px;
    /* Scaling the planks to look realistic */
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.7;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.section-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
}

.dot {
    color: var(--primary-color);
}

/* Header - Varnish Style */
.glass-header {
    position: sticky;
    top: 0;
    padding: 1rem 0;
    background: rgba(20, 10, 5, 0.9);
    /* Deep Wood Tone */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: white;
}

.nav-links a:not(.btn) {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

/* Buttons */
.btn {
    padding: 0.8rem 2.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 5px;
}

.btn-primary {
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    border: 1px solid var(--accent-color);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 126, 34, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.btn-outline:hover {
    background: var(--accent-color);
    color: black;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-bottom: 5px solid var(--accent-color);
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

/* Containers with Varnish Effect */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    background: rgba(0, 0, 0, 0.5);
    /* Darken the wood behind text */
    padding: 2rem;
    border-radius: 10px;
    border: var(--border-varnish);
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.image-frame {
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-depth);
}

.image-frame img {
    width: 100%;
    display: block;
}

/* Menu Section */
.dark-section {
    /* Transparent to show body wood texture */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.text-light {
    color: white !important;
}

.menu-card {
    /* Varnish Card Effect */
    background: rgba(62, 39, 35, 0.85);
    /* Semi-transparent dark wood */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--accent-color);
}

.price-tag {
    background: var(--accent-color);
    color: black;
    font-weight: 800;
    border-radius: 5px;
    padding: 5px 10px;
}

.card-content h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #CCC;
}

/* Locations Tickets - Clean & Modern on Wood */
.locations-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.location-ticket {
    background: #251610;
    /* Very dark wood */
    width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-depth);
}

.ticket-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-body {
    padding: 2rem;
    text-align: center;
    color: #ddd;
}

.ticket-meta {
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.ticket-action {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    transition: background 0.3s;
}

.ticket-action:hover {
    background: var(--primary-color);
}

.delivery-focus {
    border: 1px solid var(--primary-color);
}

/* Footer */
.modern-footer {
    background: #111;
    color: #888;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: white;
}

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

    .nav-links {
        background-color: #251610;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

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

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}