/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #16a34a;
    --dark-green: #15803d;
    --light-green: #22c55e;
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-600: #16a34a;
    --green-700: #15803d;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-green);
}

.cta-button {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(22, 163, 74, 0.2);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(22, 163, 74, 0.3);
}

.cta-button.mobile {
    width: 100%;
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--green-50);
    color: var(--primary-green);
}

.cta-button.mobile {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 82px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-logo-container {
    margin-bottom: 2rem;
    animation: fadeIn 0.7s ease-out;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.7s ease-out 0.1s backwards;
}

.hero-tagline {
    font-size: 2rem;
    font-style: italic;
    color: #86efac;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.7s ease-out 0.2s backwards;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.7s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeIn 0.7s ease-out 0.4s backwards;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
}

.info-badge i {
    color: #86efac;
    font-size: 1.125rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 0.7s ease-out 0.5s backwards;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(22, 163, 74, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Menu Section */
.menu-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--green-100);
    color: var(--dark-green);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-title.white {
    color: var(--white);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.menu-image-container {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--gray-100);
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-image {
    transform: scale(1.1);
}

.menu-price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}

.menu-content {
    padding: 2rem;
}

.menu-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.menu-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.menu-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.menu-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1rem;
}

.menu-footer {
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--green-50);
    transform: translateY(-2px);
}

.btn-outline.dark {
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.btn-outline.dark:hover {
    background: var(--gray-50);
}

/* About Section */
.about-section {
    position: relative;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #15803d 0%, #16a34a 50%, #15803d 100%);
    color: var(--white);
    overflow: hidden;
}

.about-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.about-background::before,
.about-background::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--white);
    border-radius: 50%;
    filter: blur(80px);
}

.about-background::before {
    top: -200px;
    left: -200px;
}

.about-background::after {
    bottom: -200px;
    right: -200px;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 10;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-style: italic;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.benefits-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    z-index: 10;
}

.benefits-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
}

.benefit-item i {
    color: #86efac;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Visit Section */
.visit-section {
    padding: 4rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.visit-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 600px;
    margin: 1rem auto 2.5rem;
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.visit-actions .btn-primary i,
.visit-actions .btn-outline i {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

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

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.footer-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--white);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-info,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--white);
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--light-green);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--white);
}

/* Menu Modal Styles */
.menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.menu-modal.active {
    display: flex;
}

.menu-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.menu-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 1rem;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    margin: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.menu-modal-close {
    position: sticky;
    top: 1rem;
    right: 1rem;
    float: right;
    background: var(--gray-100);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    margin-bottom: -40px;
}

.menu-modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.menu-modal-close i {
    font-size: 1.25rem;
    color: var(--gray-700);
}

.menu-modal-header {
    text-align: center;
    padding: 3rem 2rem 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.menu-modal-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.menu-modal-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.menu-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-bottom: 2px solid var(--gray-100);
    overflow-x: auto;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
}

.menu-tab {
    background: transparent;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-600);
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.menu-tab:hover {
    color: var(--primary-green);
    background: var(--green-50);
    border-radius: 0.5rem 0.5rem 0 0;
}

.menu-tab.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
    background: var(--green-50);
    border-radius: 0.5rem 0.5rem 0 0;
}

.menu-modal-body {
    padding: 2.5rem 2rem;
}

.menu-category {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.menu-category.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.menu-category-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .menu-category-layout {
        grid-template-columns: 300px 1fr;
        gap: 3rem;
    }
}

.menu-category-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.menu-category-image {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--gray-100);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

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

.menu-category-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .menu-category-details {
        text-align: left;
    }
}

.menu-category-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.3;
}

.menu-category-desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.menu-category-badge {
    display: inline-block;
    background: var(--green-100);
    color: var(--dark-green);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    align-self: center;
}

@media (min-width: 1024px) {
    .menu-category-badge {
        align-self: flex-start;
    }
}

.menu-category-products {
    flex: 1;
}

.menu-product-table-wrapper {
    overflow-x: auto;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    -webkit-overflow-scrolling: touch;
}

.menu-product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    min-width: 100%;
}

.menu-product-table thead {
    background: var(--gray-50);
}

.menu-product-table th {
    padding: 1.125rem 1.25rem;
    text-align: left;
    font-weight: 700;
    color: var(--gray-700);
    border-bottom: 2px solid var(--gray-200);
    white-space: nowrap;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-product-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    vertical-align: top;
}

.menu-product-table tbody tr:last-child td {
    border-bottom: none;
}

.menu-product-table tbody tr:hover {
    background: var(--green-50);
}

.menu-product-table td:nth-child(1) {
    font-weight: 600;
    color: var(--gray-900);
    min-width: 200px;
    max-width: 250px;
}

.menu-product-table td:nth-child(2) {
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 500px;
}

.menu-product-table td:nth-child(3) {
    font-weight: 700;
    color: var(--primary-green);
    white-space: nowrap;
    text-align: right;
    font-size: 1rem;
    min-width: 100px;
}

/* Responsive Design */

/* Large Desktop - 1440px and up */
@media (min-width: 1440px) {
    .section-container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-tagline {
        font-size: 2.25rem;
    }
}

/* Desktop - 1024px to 1439px */
@media (max-width: 1439px) {
    .menu-modal-content {
        max-width: 95%;
    }
}

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-category-layout {
        grid-template-columns: 1fr;
    }
    
    .menu-category-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .menu-modal-content {
        max-width: 90%;
        max-height: 85vh;
    }
    
    .menu-tabs {
        justify-content: flex-start;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    .nav-menu,
    .cta-button:not(.mobile) {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .header-container {
        padding: 0.875rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-description br {
        display: none;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .hero-info {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .info-badge {
        justify-content: center;
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .menu-section,
    .about-section,
    .visit-section {
        padding: 3rem 1.5rem;
    }
    
    /* Modal Responsive */
    .menu-modal {
        padding: 0.5rem;
    }
    
    .menu-modal-content {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 0.75rem;
    }
    
    .menu-modal-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .menu-modal-title {
        font-size: 1.5rem;
    }
    
    .menu-modal-subtitle {
        font-size: 0.875rem;
    }
    
    .menu-tabs {
        padding: 0.75rem 1rem;
        gap: 0.25rem;
        justify-content: stretch;
    }
    
    .menu-tab {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
        flex: 1;
        text-align: center;
    }
    
    .menu-modal-body {
        padding: 1.5rem 1rem;
    }
    
    .menu-category-layout {
        gap: 1.5rem;
    }
    
    .menu-category-info {
        gap: 1rem;
    }
    
    .menu-category-name {
        font-size: 1.125rem;
    }
    
    .menu-category-desc {
        font-size: 0.875rem;
    }
    
    /* Table Responsive */
    .menu-product-table {
        font-size: 0.875rem;
    }
    
    .menu-product-table th {
        padding: 0.875rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .menu-product-table td {
        padding: 1rem 0.75rem;
    }
    
    .menu-product-table td:nth-child(1) {
        min-width: 150px;
        max-width: 200px;
        font-size: 0.875rem;
    }
    
    .menu-product-table td:nth-child(2) {
        font-size: 0.8125rem;
        max-width: 300px;
    }
    
    .menu-product-table td:nth-child(3) {
        font-size: 0.9375rem;
        min-width: 80px;
    }
    
    .about-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .visit-actions {
        flex-direction: column;
    }
    
    .visit-actions .btn-primary,
    .visit-actions .btn-outline {
        width: 100%;
    }
}

/* Mobile Landscape - 640px */
@media (max-width: 640px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-card {
        max-width: 100%;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .benefits-card {
        padding: 2rem 1.5rem;
    }
}

/* Mobile Portrait - 480px */
@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem 1rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
        padding: 0 0.5rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        padding: 0 0.5rem;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }

    .menu-card {
        border-radius: 0.75rem;
    }
    
    .menu-content {
        padding: 1.5rem;
    }
    
    .benefits-card {
        padding: 1.5rem;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        font-size: 1rem;
    }
    
    /* Modal Mobile Optimization */
    .menu-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
    }
    
    .menu-modal-close i {
        font-size: 1.125rem;
    }
    
    .menu-modal-header {
        padding: 3rem 1rem 1rem;
    }
    
    .menu-modal-title {
        font-size: 1.375rem;
    }
    
    .menu-modal-subtitle {
        font-size: 0.8125rem;
    }
    
    .menu-tabs {
        padding: 0.5rem;
        flex-wrap: wrap;
    }
    
    .menu-tab {
        padding: 0.625rem 0.75rem;
        font-size: 0.75rem;
        min-width: calc(50% - 0.25rem);
    }
    
    .menu-modal-body {
        padding: 1rem 0.75rem;
    }
    
    .menu-category-layout {
        gap: 1.25rem;
    }
    
    .menu-category-name {
        font-size: 1rem;
    }
    
    .menu-category-desc {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .menu-category-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }
    
    /* Simplified Table for Mobile */
    .menu-product-table-wrapper {
        border-radius: 0.5rem;
    }
    
    .menu-product-table {
        font-size: 0.8125rem;
    }
    
    .menu-product-table th {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .menu-product-table td {
        padding: 0.875rem 0.5rem;
    }
    
    .menu-product-table td:nth-child(1) {
        min-width: 120px;
        max-width: 150px;
        font-size: 0.8125rem;
    }
    
    .menu-product-table td:nth-child(2) {
        font-size: 0.75rem;
        line-height: 1.5;
        max-width: 200px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .menu-product-table td:nth-child(3) {
        font-size: 0.875rem;
        min-width: 70px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .footer-text,
    .footer-info,
    .footer-links {
        font-size: 0.8125rem;
    }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-tagline {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .menu-modal-title {
        font-size: 1.25rem;
    }
    
    .menu-tab {
        font-size: 0.6875rem;
        padding: 0.5rem 0.5rem;
    }
    
    .menu-category-name {
        font-size: 0.9375rem;
    }
    
    .menu-product-table td:nth-child(1) {
        min-width: 100px;
        font-size: 0.75rem;
    }
    
    .menu-product-table td:nth-child(2) {
        font-size: 0.6875rem;
    }
    
    .menu-product-table td:nth-child(3) {
        font-size: 0.8125rem;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 4rem 2rem 2rem;
    }
    
    .hero-logo {
        width: 60px;
        height: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .hero-info {
        margin-bottom: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .menu-modal-content {
        max-height: 90vh;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu,
    .scroll-indicator,
    .hero-actions,
    .menu-footer,
    .visit-actions,
    .about-actions,
    .footer,
    .menu-modal-close {
        display: none !important;
    }
    
    .hero-section {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section-container {
        max-width: 100%;
    }
}
