/* 
   Mint Kitchen - Design System
   Primary: #3EB489
   Secondary: #FFFFFF
   Accent: #333333
*/

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #3EB489;
    --primary-dark: #2e8b68;
    --secondary-color: #FFFFFF;
    --accent-color: #333333;
    --text-color: #444444;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lato', sans-serif;
    color: var(--accent-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Navigation - Modern */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(62, 180, 137, 0.08);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--accent-color);
    letter-spacing: -0.02em;
    transition: color 0.25s ease, transform 0.25s ease;
}

.logo:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 10px;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(62, 180, 137, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 6px 16px rgba(62, 180, 137, 0.4);
}

.logo-text {
    color: inherit;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 1002;
}

.nav-toggle:hover {
    background: var(--light-gray);
    border-color: var(--primary-color);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    position: relative;
    display: block;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.header-actions .btn-nav-cta {
    padding: 10px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(62, 180, 137, 0.3);
    white-space: nowrap;
}

.header-actions .btn-nav-cta:hover {
    box-shadow: 0 6px 20px rgba(62, 180, 137, 0.4);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--secondary-color);
    text-align: center;
}

.hero-content {
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Sections */
section {
    padding: 80px 0;
    max-width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* ========== INTERNAL PAGES - Page header, cards, forms ========== */
.page-header {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(62, 180, 137, 0.06) 100%);
    padding: 52px 0 44px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header .container {
    max-width: 720px;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.05rem;
    color: var(--text-color);
    opacity: 0.9;
}

.page-header .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-header .reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.value-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(62, 180, 137, 0.12);
}

.value-card .value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(62, 180, 137, 0.15), rgba(62, 180, 137, 0.08));
    color: var(--primary-color);
    border-radius: 14px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.08);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(62, 180, 137, 0.2);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/3;
    transition: transform 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    color: #fff;
    font-size: 1.5rem;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.filter-btn:hover {
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.menu-item-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    min-height: 160px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.menu-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.menu-item-card .menu-item-image {
    flex: 0 0 140px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.menu-item-card:hover .menu-item-image {
    transform: scale(1.05);
}

.contact-info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-info-card .contact-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(62, 180, 137, 0.15), rgba(62, 180, 137, 0.08));
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.25s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.05);
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
}

.order-success h2 {
    font-size: 1.75rem;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.9rem;
    }
}

@media (max-width: 600px) {
    .form-row-2,
    .form-row-3 {
        grid-template-columns: 1fr !important;
    }
}

/* Two-column layouts (order, reservation, contact) stack on mobile */
@media (max-width: 768px) {
    /* Prevent flex children with inline min-width from causing horizontal overflow */
    .cart-section > div,
    .reservation-section > div,
    .contact-section > div,
    .about-content > .container > div,
    main section .container > div[style*="flex"] {
        min-width: 0 !important;
    }

    .about-content .about-block {
        flex-direction: column !important;
        gap: 32px !important;
        margin-bottom: 48px !important;
    }

    .about-content .about-block .reveal-left,
    .about-content .about-block .reveal-right {
        min-width: 100% !important;
    }

    .about-content .about-block h2 {
        font-size: 1.75rem !important;
    }

    .cart-section [style*="display: flex"],
    .reservation-section [style*="display: flex"] {
        flex-direction: column !important;
        gap: 32px !important;
    }

    .cart-section .reveal-left,
    .cart-section .reveal-right,
    .reservation-section .reveal-left,
    .reservation-section .reveal-right {
        min-width: 100% !important;
        flex: none !important;
    }

    .cart-section .form-card[style*="position: sticky"] {
        position: static !important;
    }

    .cart-section .card.form-card,
    .cart-section .form-card {
        padding: 24px 20px !important;
    }
}

@media (max-width: 480px) {
    .cart-table-wrap {
        margin: 0 -20px;
        padding: 0 20px;
    }

    .cart-table th,
    .cart-table td {
        padding: 12px 8px !important;
        font-size: 0.85rem !important;
    }

    .cart-table th:nth-child(2),
    .cart-table th:nth-child(3),
    .cart-table td:nth-child(2),
    .cart-table td:nth-child(3) {
        text-align: center !important;
    }

    .order-success {
        padding: 40px 16px !important;
    }

    .order-success i {
        font-size: 3rem !important;
    }
}

/* Footer */
/* Footer - Modern */
.site-footer {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(180deg, #2a2a2a 0%, #1f1f1f 100%);
    color: rgba(255, 255, 255, 0.85);
}

.footer-top {
    padding: 56px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-brand .footer-logo:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.footer-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 10px;
    font-size: 0.9rem;
}

.footer-logo-text {
    color: inherit;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    font-size: 1rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(62, 180, 137, 0.4);
    display: inline-block;
}

.footer-links,
.footer-contact,
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li,
.footer-hours li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.footer-hours li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.footer-hours span {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-tagline {
        max-width: none;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 40px 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-social {
        margin-bottom: 0;
    }
}

/* ========== HOME PAGE ANIMATIONS ========== */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Hero entrance animations */
.hero-content .hero-title {
    animation: fadeInUp 0.9s ease-out forwards;
    opacity: 0;
}

.hero-content .hero-subtitle {
    animation: fadeInUp 0.9s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-content .hero-btns {
    animation: fadeInUp 0.9s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-btns .btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btns .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(62, 180, 137, 0.4);
}

/* Scroll-reveal base (hidden until animated) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-left.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-right.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.reveal-visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.reveal-visible > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.reveal-visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.reveal-visible > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.reveal-visible > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.reveal-visible > *:nth-child(6) { transition-delay: 0.6s; }

.reveal-stagger.reveal-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Menu / feature cards hover */
.menu-card,
.feature-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.menu-card:hover,
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.menu-card .card-image,
.feature-card .card-image {
    overflow: hidden;
}

.menu-card .card-image img,
.menu-card .card-image {
    transition: transform 0.5s ease;
}

.menu-card:hover .card-image {
    transform: scale(1.05);
}

/* Why Choose Us icon blocks */
.why-us-item {
    transition: transform 0.3s ease, color 0.3s ease;
}

.why-us-item .why-us-icon {
    transition: transform 0.4s ease;
}

.why-us-item:hover .why-us-icon {
    transform: scale(1.15) translateY(-4px);
    color: var(--primary-dark);
}

.why-us-item:hover {
    transform: translateY(-4px);
}

/* Section title underline animation on reveal */
.section-title.reveal h2::after {
    width: 0;
}

.section-title.reveal.reveal-visible h2::after {
    animation: underlineGrow 0.6s ease-out 0.3s forwards;
}

/* Testimonial subtle animation */
.testimonial-block {
    transition: transform 0.3s ease;
}

.testimonial-block:hover {
    transform: scale(1.02);
}

/* Map section */
.map,
.map-embed-wrap {
    max-width: 100%;
}

.map-embed-wrap {
    background: var(--light-gray);
}

.map-embed-wrap iframe {
    max-width: 100%;
}

.map-open-link {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-open-link:hover {
    background: var(--primary-dark);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 180, 137, 0.4);
}

/* Responsive - Nav & general */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    .nav-wrap {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--secondary-color);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
        padding: 80px 24px 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-wrap.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 4px;
    }

    .nav-links a {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .nav-links a:hover {
        background: var(--light-gray);
    }

    .nav-links a::after {
        display: none;
    }

    .header-actions {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border-color);
    }

    .header-actions .btn-nav-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .nav-backdrop {
        display: block;
    }
}

@media (max-width: 768px) {
    section {
        padding: 48px 0;
    }

    .menu-section,
    .gallery,
    .contact-section,
    .reservation-section,
    .cart-section {
        padding: 48px 0 !important;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 1.85rem;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-btns .btn {
        min-width: 200px;
        min-height: 44px;
    }

    .about-preview-grid {
        flex-direction: column !important;
        gap: 32px !important;
    }

    .about-preview-grid .reveal-right {
        min-width: 100% !important;
    }

    .about-preview-grid .reveal-left {
        min-width: 100% !important;
    }

    .about-preview-grid img {
        max-height: 280px;
        object-fit: cover;
    }

    .featured-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .why-us-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .why-us-icon {
        font-size: 2.5rem !important;
    }

    .testimonial-block p {
        font-size: 1.05rem !important;
    }

    .map-embed-wrap {
        height: 320px !important;
    }

    .map-embed-wrap iframe {
        height: 320px !important;
    }

    .map-open-link {
        bottom: 12px;
        right: 12px;
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .menu-card > div:last-child,
    .menu-card [style*="padding: 20px"] {
        padding: 16px !important;
    }

    .reveal-left.reveal-visible,
    .reveal-right.reveal-visible {
        transform: translateX(0);
    }
}

/* Small phones and narrow viewports */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 40px 0;
    }

    .menu-section,
    .gallery,
    .contact-section,
    .reservation-section,
    .cart-section {
        padding: 40px 0 !important;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .hero {
        height: 65vh;
        min-height: 360px;
    }

    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }

    .page-header {
        padding: 40px 0 32px;
    }

    .page-header h1 {
        font-size: 1.65rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .form-card {
        padding: 24px 20px;
    }

    .value-card {
        padding: 28px 20px;
    }

    .filter-tabs {
        gap: 8px;
        margin-bottom: 32px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .menu-item-card {
        flex-direction: column;
        min-height: auto;
    }

    .menu-item-card .menu-item-image {
        flex: 0 0 180px;
        min-height: 180px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-info-card {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .map-embed-wrap {
        height: 280px !important;
    }

    .map-embed-wrap iframe {
        height: 280px !important;
    }

    .btn {
        padding: 12px 20px;
        min-height: 44px;
    }
}

/* Touch-friendly and very small screens */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .section-title h2 {
        font-size: 1.45rem;
    }
}