/* CSS Variables */
:root {
    --bg-dark: #121212;
    --bg-card: #1C1C1C;
    --bg-white: #FFFFFF;
    --accent: #FF6A00;
    --accent-hover: #E65F00;
    --text-light: #F5F5F7;
    --text-muted: #BBBBBB;
    --text-dark: #1D1D1F;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
    --section-padding: 100px 0;
}

/* CSS Animated Counters Logic (@property is modern CSS) */
@property --count-rate {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false;
}

@property --count-customers {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false;
}

@property --count-years {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false;
}

/* Light Theme Variables */
body:has(#theme-checkbox:checked) {
    --bg-dark: #F5F5F7;
    --bg-card: #FFFFFF;
    --bg-white: #FFFFFF;
    /* Stays white */
    --text-light: #121212;
    --text-muted: #555555;
    --text-dark: #121212;
}

body:has(#theme-checkbox:checked) .feature-card {
    background-color: #E8E8ED;
}

body:has(#theme-checkbox:checked) .navbar,
body:has(#theme-checkbox:checked) .nav-links a {
    color: var(--text-dark);
}

body:has(#theme-checkbox:checked) .btn-accent {
    color: white;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.05;
    /* Very subtle "light" effect */
    z-index: -1;
    pointer-events: none;

    /* Subtle Body Scroll Parallax */
    view-timeline-name: --body-scroll;
    view-timeline-axis: block;
    animation: body-parallax linear both;
    animation-timeline: --body-scroll;
    animation-range: entry 0% exit 100%;
}

@keyframes body-parallax {
    from {
        transform: scale(1.1) translateY(-2%);
    }

    to {
        transform: scale(1.1) translateY(2%);
    }
}

body:has(#theme-checkbox:checked)::before {
    opacity: 0.02;
    /* Even more subtle in light mode */
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

span {
    color: var(--accent);
}

.section {
    padding: var(--section-padding);
}

.reveal-on-scroll {
    /* Modern CSS Scroll-Driven Animation */
    view-timeline-name: --section-reveal;
    view-timeline-axis: block;
    animation: linear fade-reveal both;
    animation-timeline: --section-reveal;
    animation-range: entry 10% cover 40%;
}

.hero {
    animation: fade-reveal-load 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fade-reveal-load {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-reveal {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
}

/* Header / Navbar */
.navbar {
    padding: 2rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
}

.icon-sun {
    display: none;
}

.icon-moon {
    display: block;
}

body:has(#theme-checkbox:checked) .icon-sun {
    display: block;
}

body:has(#theme-checkbox:checked) .icon-moon {
    display: none;
}

body:has(#theme-checkbox:checked) .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-image {
    position: relative;
    height: 500px;
}

.parallax-bg {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition);

    /* Modern Scroll-Driven Parallax */
    view-timeline-name: --parallax;
    view-timeline-axis: block;
    animation: parallax-movement linear both;
    animation-timeline: --parallax;
    animation-range: entry 0% exit 100%;
}

@keyframes parallax-movement {
    from {
        background-position-y: 0%;
    }

    to {
        background-position-y: 100%;
    }
}

.parallax-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    transition: var(--transition);
}

.hero-image:hover,
.highlight-img:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.05);
}

.hero-image:hover::after,
.highlight-img:hover::after {
    box-shadow: inset 0 0 150px rgba(255, 106, 0, 0.2);
}


.hero-content {
    transition: var(--transition);
}

/* Fallback for browsers that don't support Scroll-Driven Animations */
@supports not (animation-timeline: view()) {
    .parallax-bg {
        background-attachment: fixed;
    }
}

/* Category Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    display: block;
    text-decoration: none;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.category-card h4 {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 1;
    font-size: 1.5rem;
    color: white;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card:hover img {
    transform: scale(1.1);
}

/* Satisfaction Section */
.satisfaction {
    background-color: var(--bg-card);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Counter Animations */
.counter-rate::after {
    counter-reset: num var(--count-rate);
    content: counter(num) "%";
    animation: count-rate 8s ease-in-out infinite;
}

.counter-customers::after {
    counter-reset: num var(--count-customers);
    content: counter(num) "k+";
    animation: count-customers 8s ease-in-out infinite;
}

.counter-years::after {
    counter-reset: num var(--count-years);
    content: counter(num);
    animation: count-years 8s ease-in-out infinite;
}

@keyframes count-rate {

    0%,
    10% {
        --count-rate: 0;
    }

    40%,
    90% {
        --count-rate: 98;
    }

    100% {
        --count-rate: 0;
    }
}

@keyframes count-customers {

    0%,
    10% {
        --count-customers: 0;
    }

    40%,
    90% {
        --count-customers: 15;
    }

    100% {
        --count-customers: 0;
    }
}

@keyframes count-years {

    0%,
    10% {
        --count-years: 0;
    }

    40%,
    90% {
        --count-years: 12;
    }

    100% {
        --count-years: 0;
    }
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Animations for Satisfaction Section */
.stat-item {
    animation: statReveal 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes statReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section (White cards on dark bg) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background-color: var(--bg-card);
    color: var(--text-light);
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle edge */
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
    background: linear-gradient(135deg, var(--accent), #FFB000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* About Section */
.about {
    background-color: var(--bg-card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
}

.about-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-block h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.about-block p {
    color: var(--text-muted);
}

/* Highlight CTA */
.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background-color: var(--bg-card);
    padding: 5rem;
    border-radius: 30px;
}

.highlight-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.highlight-content p {
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.highlight-img {
    height: 400px;
}

/* Menu Section */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--text-light);
    /* Maximum contrast */
}

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    /* More breathing room */
}

.menu-item-card {
    background: transparent;
    /* Clean slate */
    border-radius: 24px;
    overflow: visible;
    /* Allow floating image effect */
    transition: var(--transition);
    position: relative;
    border: none;
}

.menu-item-card:hover {
    transform: translateY(-12px);
}

/* Menu Filtering Logic */
.filter-labels {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

#filter-all:checked~.filter-labels label[for="filter-all"],
#filter-sashimi:checked~.filter-labels label[for="filter-sashimi"],
#filter-rolls:checked~.filter-labels label[for="filter-rolls"],
#filter-nigiri:checked~.filter-labels label[for="filter-nigiri"] {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
}

.menu-item-card {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

#filter-all:checked~.menu-grid .menu-item-card,
#filter-sashimi:checked~.menu-grid .cat-sashimi,
#filter-rolls:checked~.menu-grid .cat-rolls,
#filter-nigiri:checked~.menu-grid .cat-nigiri {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 2;
    position: relative;
}

.menu-item-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 106, 0, 0.2);
}

.menu-item-info {
    background: linear-gradient(135deg, var(--bg-card) 0%, #252525 100%);
    padding: 2.5rem 2rem 2.2rem;
    border-radius: 0 0 24px 24px;
    margin-top: -40px;
    /* Stronger overlap for depth */
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.menu-item-card:hover .menu-item-info {
    border-color: rgba(255, 106, 0, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.menu-item-header h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 700;
}

.price {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    background: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.menu-item-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background-color: var(--bg-card);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card,
.contact-hours-card {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
}

.contact-info-card h3,
.contact-hours-card h3 {
    font-size: 1.8rem;
    color: var(--accent);
}

.contact-hours-card h3 {
    margin-bottom: 0;
    /* Updated for flex header */
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.status-badge {
    background-color: #2D6A4F;
    /* Emerald green */
    color: white;
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body:has(#theme-checkbox:checked) .hour-row {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.hour-row span {
    color: var(--text-light);
}

.hour-row span:last-child {
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.quote-icon {
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--accent);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Reservation Section */
.reservation {
    padding: var(--section-padding);
}

.reservation-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    padding: 6rem;
    border-radius: 40px;
    text-align: center;
    border: 1px solid var(--accent);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

body:has(#theme-checkbox:checked) .reservation-box {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.reservation-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.reservation-content {
    position: relative;
    z-index: 1;
}

.reservation-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.reservation-content h2 span {
    text-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

.reservation-content p {
    color: #DDDDDD;
    /* Even brighter for maximum readability */
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.reservation-form .form-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.reservation-form input,
.reservation-form select {
    background: rgba(128, 128, 128, 0.05);
    border: 1px solid rgba(128, 128, 128, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.reservation-form input::placeholder,
.reservation-form select:invalid,
.reservation-form input[type="date"] {
    color: rgba(255, 255, 255, 0.6);
}

.reservation-form input[type="date"]:focus,
.reservation-form input[type="date"]:valid,
.reservation-form select:valid {
    color: var(--text-light);
}

body:has(#theme-checkbox:checked) .reservation-form input,
body:has(#theme-checkbox:checked) .reservation-form select {
    background: white;
    border-color: #DDD;
}

body:has(#theme-checkbox:checked) .reservation-form input::placeholder,
body:has(#theme-checkbox:checked) .reservation-form select:invalid,
body:has(#theme-checkbox:checked) .reservation-form input[type="date"] {
    color: rgba(0, 0, 0, 0.4);
}

.reservation-form input:focus,
.reservation-form select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 106, 0, 0.05);
}

.reservation-form select option {
    background: var(--bg-dark);
    color: white;
}

/* Footer & Other tweaks */
.footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #0A0A0A;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin: 1.5rem 0 2rem;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links a,
.footer-contact p {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    opacity: 0.7;
}

.social-icon:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav-links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
        padding: 3rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .reservation-form .form-group {
        grid-template-columns: 1fr;
    }

    .reservation-box {
        padding: 3rem 1.5rem;
    }

    .filter-labels {
        flex-wrap: wrap;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}