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

:root {
    --primary-red: #dc2626;
    --dark-red: #991b1b;
    --light-red: #fecaca;
    --dark-gray: #111827;
    --light-gray: #f3f4f6;
    --border-gray: #e5e7eb;
    --text-gray: #4b5563;
    --accent-orange: #f97316;
    --accent-yellow: #fbbf24;
    --gradient-1: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    --gradient-2: linear-gradient(135deg, #fecaca 0%, #fed7aa 100%);
    --gradient-dark: linear-gradient(135deg, #111827 0%, #374151 100%);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background: #fafafa;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    animation: slideDown 0.5s ease-out;
    z-index: 999;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.promo-icon {
    font-size: 24px;
    animation: bounce 2s ease-in-out infinite;
}

.promo-text {
    font-size: 16px;
    line-height: 1.4;
}

.promo-text strong {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-cta {
    background: white;
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) rotate(90deg);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
}

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

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    text-decoration: none;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    color: var(--dark-red);
    transform: translateY(-2px);
}

.call-btn {
    background: var(--gradient-1);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-red);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    min-height: 650px;
    padding: 40px 40px;
    background: linear-gradient(135deg, #f5f1ed 0%, #efefef 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.hero-bg-decoration {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    animation: slideInLeft 0.8s ease-out;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-address {
    font-size: 16px;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 40px;
    background: rgba(220, 38, 38, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-gray);
    border-color: var(--dark-gray);
}

.btn-secondary:hover {
    background: var(--dark-gray);
    color: white;
    transform: translateY(-4px);
}

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0;
    animation: slideInRight 0.8s ease-out;
}

.hero-image img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Menu Section */
.menu {
    padding: 100px 20px;
    background: white;
}

/* Menu category images */
.menu-category img {
    transition: transform 0.3s ease;
}

.menu-category:hover img {
    transform: scale(1.02);
}

/* Full width menu category */
.menu-category.full-width {
    grid-column: 1 / -1;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.menu-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.menu-category:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.1);
}

.menu-category h3 {
    font-size: 24px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-weight: 700;
}

.menu-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateX(8px);
}

.item-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-gray);
    flex: 1;
    padding-right: 16px;
    transition: color 0.3s ease;
}

.menu-item:hover .item-name {
    color: var(--primary-red);
}

.item-price {
    font-weight: bold;
    color: var(--primary-red);
    white-space: nowrap;
    font-size: 16px;
}

/* Menu Images */
.menu-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-gray);
}

.menu-images img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu-images img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
}

/* Reviews Section */
.reviews {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fafafa 0%, white 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: scaleUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    color: rgba(220, 38, 38, 0.1);
    font-weight: bold;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(220, 38, 38, 0.15);
    border-left-color: var(--accent-orange);
}

.review-header {
    margin-bottom: 16px;
}

.reviewer-info h4 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 4px;
    font-weight: 600;
}

.reviewer-title {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.review-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stars {
    font-size: 18px;
    color: var(--accent-yellow);
    letter-spacing: 2px;
}

.time {
    font-size: 14px;
    color: var(--text-gray);
}

.review-text {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-gray);
    font-size: 13px;
    color: var(--text-gray);
}

.recommended {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-gray);
}

.reviews-cta {
    text-align: center;
    padding: 40px;
    background: var(--gradient-1);
    border-radius: 16px;
    color: white;
}

.reviews-cta p {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: var(--primary-red);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: white;
}

.map-container {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 16px 48px rgba(220, 38, 38, 0.15);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hours-status-container {
    margin-bottom: 24px;
}

.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hours-status.open {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
}

.hours-status.closed {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-red);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-gray);
    animation: pulse 2s ease-in-out infinite;
}

.hours-status.open .status-dot {
    background: #10b981;
}

.hours-status.closed .status-dot {
    background: var(--primary-red);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.info-item .label {
    color: var(--text-gray);
    font-size: 14px;
}

.info-item .value {
    font-weight: 600;
    color: var(--dark-gray);
}

.info-section {
    margin-bottom: 24px;
}

.info-section h4 {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 1px;
}

.info-section p {
    color: var(--dark-gray);
    font-size: 16px;
}

.phone-link {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: var(--dark-red);
    transform: translateY(-2px);
}

.services-list {
    list-style: none;
}

.services-list li {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.services-list li:hover {
    color: var(--primary-red);
    transform: translateX(4px);
}

.note {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    margin-bottom: 16px;
}

.service-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.service-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
    color: var(--dark-gray);
    border: 2px solid var(--primary-red);
}

.service-btn:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.doordash-btn {
    background: #FF3D2B;
    color: white;
    border-color: #FF3D2B;
}

.doordash-btn:hover {
    background: #E63622;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 61, 43, 0.3);
}

/* Floating Order Button */
.floating-order-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-1);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-shadow 2s ease-in-out infinite;
}

.floating-order-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.6);
}

.order-icon {
    font-size: 20px;
}

.order-text {
    white-space: nowrap;
}

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(220, 38, 38, 0.5);
    }
    50% {
        box-shadow: 0 8px 32px rgba(220, 38, 38, 0.8);
    }
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
        order: -1;
    }

    .nav-logo {
        order: 0;
        justify-self: center;
        grid-column: 2;
    }

    .nav-contact {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }

    .nav-phone {
        display: none;
    }

    .call-btn {
        padding: 8px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid var(--border-gray);
    }

    .nav-link {
        font-size: 18px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 30px;
        padding: 40px 20px;
        overflow-x: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
        animation: none;
    }

    .hero-content h1 {
        font-size: 40px;
        width: 100%;
    }

    .hero-description {
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-address {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        padding: 0;
        animation: none;
    }

    .hero-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .menu-images {
        grid-template-columns: 1fr;
    }

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

    .menu,
    .contact,
    .reviews {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 10px 40px 10px 15px;
    }

    .promo-content {
        gap: 8px;
    }

    .promo-icon {
        font-size: 20px;
    }

    .promo-text {
        font-size: 13px;
    }

    .promo-cta {
        padding: 6px 16px;
        font-size: 12px;
    }

    .promo-close {
        right: 10px;
        font-size: 24px;
    }

    .nav-container {
        height: 60px;
        padding: 0 12px;
    }

    .call-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .hero {
        padding: 30px 15px;
        overflow-x: hidden;
    }

    .hero-content {
        padding: 0;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
        width: 100%;
    }

    .hero-description {
        font-size: 14px;
        width: 100%;
        padding: 0 5px;
    }

    .hero-image img {
        max-width: 280px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .menu-category h3 {
        font-size: 18px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .review-card {
        padding: 20px;
    }

    .menu,
    .contact,
    .reviews {
        padding: 40px 20px;
    }

    .floating-order-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .order-icon {
        font-size: 18px;
    }
}
