:root {
    --primary-color: #1e3a5f;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #0d1b2a;
    --white: #ffffff;
    --gray: #6c757d;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

/* Prevent horizontal scroll on mobile */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
}

.row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden !important;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden !important;
    background-color: var(--white);
    max-width: 100vw;
    width: 100%;
    position: relative;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase tap targets for touch devices */
    .btn,
    .nav-link,
    a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Disable hover effects on touch devices */
    .menu-card:hover,
    .feature-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: 80px 0;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo {
    border-radius: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-order {
    background: var(--secondary-color);
    color: var(--white) !important;
    border: none;
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-order:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

/* Hero Section */
.hero-section {
    height: 75vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
}

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

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color) !important;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content {
    padding-right: 2rem;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.about-image img {
    border-radius: 12px;
}

.stats-row {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray);
    font-size: 1rem;
}

/* Menu Section */
.menu-section {
    background: var(--light-color);
}

.menu-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.menu-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.menu-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.menu-content {
    padding: 1.5rem;
}

.menu-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.menu-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
}

/* Google Rating Badge */
.google-rating-badge {
    display: inline-block;
    margin: 1.5rem auto;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.google-rating-badge:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.rating-badge-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rating-score {
    text-align: center;
}

.rating-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #fbbc04;
    font-size: 1.2rem;
    white-space: nowrap;
}

.rating-stars i {
    margin: 0 1px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-logo {
    font-size: 2rem;
    color: #4285f4;
}

.rating-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.review-count {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
}

.google-text {
    font-size: 0.85rem;
    color: var(--gray);
}

.testimonial-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Location Section - Bento Box Design */
.location-section {
    background: var(--light-color);
}

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

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px 300px;
    gap: 1rem;
    margin-top: 2rem;
}

.bento-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Map Box - Large */
.bento-map {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    padding: 0;
}

.bento-map iframe {
    width: 100%;
    height: 100%;
}

/* Address Box */
.bento-address {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

/* Hours Box */
.bento-hours {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    padding: 1.5rem;
}

/* Contact Box */
.bento-contact {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

/* Bento Box Content Styles */
.bento-icon {
    width: 45px;
    height: 45px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.bento-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.bento-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.bento-box p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bento-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.bento-box a:hover {
    color: var(--secondary-color);
}

.bento-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Hours Bento */
.hours-bento {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hours-bento {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.hours-bento::-webkit-scrollbar {
    display: none;
}

.hours-row-bento {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.8rem;
}

.hours-row-bento:last-child {
    border-bottom: none;
}

.hours-row-bento span:first-child {
    font-weight: 600;
    color: var(--dark-color);
}

.hours-row-bento span:last-child {
    color: var(--text-color);
    font-size: 0.75rem;
}

.location-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--gray);
    margin: 0;
}

.info-item a {
    color: var(--primary-color);
}

.info-item a:hover {
    color: var(--secondary-color);
}

.hours-list {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.hours-item .day {
    font-weight: 600;
    color: var(--dark-color);
    text-transform: capitalize;
}

.hours-item .time {
    color: var(--gray);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* App Banner Section */
.app-banner-section {
    color: var(--white);
}

.app-features-list {
    list-style: none;
    padding: 0;
}

.app-features-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.app-button img {
    transition: var(--transition);
}

.app-button:hover img {
    transform: scale(1.05);
}

/* Footer Section */
.footer-section {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
}

.footer-logo {
    border-radius: 8px;
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Desktop Footer - Show by default */
.footer-desktop {
    display: block;
}

/* Mobile Footer - Hide by default */
.footer-mobile {
    display: none;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 0.75rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-contact li div {
    flex: 1;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-hours-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-hours-box strong {
    color: var(--white);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

/* Mobile Footer Specific Styles */
.footer-mobile .footer-brand {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-mobile .footer-contact li,
.footer-mobile .footer-hours li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-mobile .footer-contact i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.footer-mobile .social-links {
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 1.5rem;
}

.footer-copyright,
.footer-powered {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-powered a {
    color: var(--secondary-color);
}

.footer-powered a:hover {
    color: var(--white);
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .menu-card {
        margin-bottom: 1rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Navbar */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-logo {
        width: 35px;
        height: 35px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .btn-order {
        margin-top: 0.5rem !important;
        width: 100%;
        text-align: center;
    }
    
    /* Hero Section */
    .hero-section {
        height: 65vh;
        min-height: 450px;
        max-height: none;
        padding: 80px 0 50px;
        background-attachment: scroll;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    /* About Section */
    .about-content {
        padding: 0;
    }
    
    .about-content .lead {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .about-image img {
        max-height: 300px;
        object-fit: cover;
    }
    
    .stats-row {
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    /* Menu Section */
    .menu-image {
        height: 180px;
    }
    
    .menu-content {
        padding: 1.25rem;
    }
    
    .menu-title {
        font-size: 1.1rem;
    }
    
    .menu-description {
        font-size: 0.85rem;
    }
    
    .menu-price {
        font-size: 1.2rem;
    }
    
    .menu-category-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.7rem;
    }
    
    /* Testimonials */
    .google-rating-badge {
        padding: 1.25rem 1.5rem;
    }
    
    .rating-badge-content {
        gap: 1rem;
    }
    
    .rating-number {
        font-size: 2rem;
    }
    
    .rating-stars {
        font-size: 1rem;
    }
    
    .google-logo {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-rating {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    /* Location Section */
    .location-info-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .info-item {
        margin-bottom: 1.25rem;
    }
    
    .info-item i {
        font-size: 1.3rem;
    }
    
    .hours-list {
        padding: 1.25rem;
    }
    
    .hours-item {
        font-size: 0.9rem;
    }
    
    .map-container iframe {
        height: 350px !important;
    }
    
    /* Bento Grid Responsive */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1rem;
    }

    .bento-map {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        height: 300px;
    }

    .bento-address {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .bento-hours {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .bento-contact {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    /* App Banner */
    .app-banner-section {
        padding: 50px 0;
    }
    
    .app-banner-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .app-banner-section .lead {
        font-size: 1rem;
    }
    
    .app-features-list {
        font-size: 0.95rem;
    }
    
    .app-features-list li {
        margin-bottom: 0.7rem;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .app-button img {
        height: 45px !important;
    }
    
    .app-mockup img {
        max-width: 250px !important;
    }
    
    /* Footer */
    .footer-desktop {
        display: none !important;
    }
    
    .footer-mobile {
        display: block !important;
        padding: 2rem 0 1rem;
    }
    
    .footer-mobile .footer-brand {
        font-size: 1.25rem;
    }
    
    .footer-mobile h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-mobile .footer-contact li,
    .footer-mobile .footer-hours li {
        margin-bottom: 0.75rem;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    html {
        font-size: 13px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Container padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Navbar */
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-logo {
        width: 32px;
        height: 32px;
    }
    
    /* Hero Section */
    .hero-section {
        height: 55vh;
        min-height: 400px;
        padding: 80px 0 40px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.35rem 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* About Section */
    .about-image img {
        max-height: 250px;
    }
    
    .about-content .lead {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        font-size: 2.25rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    /* Menu Section */
    .menu-image {
        height: 160px;
    }
    
    .menu-content {
        padding: 1rem;
    }
    
    .menu-title {
        font-size: 1rem;
    }
    
    .menu-description {
        font-size: 0.8rem;
    }
    
    .menu-price {
        font-size: 1.1rem;
    }
    
    /* Testimonials */
    .google-rating-badge {
        padding: 1rem 1.25rem;
    }
    
    .rating-badge-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .rating-number {
        font-size: 1.75rem;
    }
    
    .rating-stars {
        font-size: 0.9rem;
    }
    
    .rating-info {
        gap: 0.75rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    /* Location Section */
    .location-info-card {
        padding: 1.25rem;
    }
    
    .info-item i {
        font-size: 1.2rem;
    }
    
    .info-item strong {
        font-size: 0.95rem;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
    
    .hours-list {
        padding: 1rem;
    }
    
    .hours-item {
        font-size: 0.85rem;
    }
    
    .map-container iframe {
        height: 300px !important;
    }
    
    /* Bento Grid Mobile */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bento-map,
    .bento-address,
    .bento-hours,
    .bento-contact {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .bento-map {
        height: 250px;
    }
    
    /* App Banner */
    .app-banner-section {
        padding: 40px 0;
    }
    
    .app-banner-section h2 {
        font-size: 1.5rem;
    }
    
    .app-banner-section .lead {
        font-size: 0.9rem;
    }
    
    .app-features-list {
        font-size: 0.9rem;
    }
    
    .app-features-list li {
        margin-bottom: 0.6rem;
    }
    
    .app-button img {
        height: 42px !important;
    }
    
    .app-mockup img {
        max-width: 200px !important;
    }
    
    /* Footer */
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .footer-logo {
        width: 45px;
        height: 45px;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 0.85rem;
    }
    
    .footer-mobile {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-mobile .footer-brand {
        font-size: 1.1rem;
    }
    
    .footer-mobile .footer-copyright,
    .footer-mobile .footer-powered {
        font-size: 0.8rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-outline-primary,
    .btn-outline-light {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .menu-image {
        height: 140px;
    }
    
    .app-button img {
        height: 38px !important;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 400px;
        padding: 70px 0 40px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-section,
    .app-banner-section,
    .footer-section,
    .back-to-top {
        display: none;
    }
    
    .section-padding {
        padding: 20px 0;
    }
}

