/* Mobile-first base styles */
html {
    height: 100%;
}

body {
    margin: 0;
    height: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Remove navigation placeholder since nav is now naturally full-width */
main {
    flex: 1;
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 20px;
    box-sizing: border-box;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

.footer h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 16px;
    color: #ffffff;
}

.footer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: 8px 0;
    color: #cccccc;
    line-height: 1.5;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #e30613;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
    background-color: #e30613;
    color: #ffffff;
}

/* Hero section */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo positioning */
.logo-container {
    position: absolute;
    top: 3px;
    left: 5px;
    z-index: 10;
}

.logo {
    width: clamp(120px, 16vw, 160px);
    height: auto;
    display: block;
}

.hero {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.hero-header {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: -0.04em;
    line-height: 1.1em;
    text-align: center;
    margin-bottom: 0.5rem;
}

.hero-subheader {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #999999;
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    letter-spacing: -0.04em;
    line-height: 1.2em;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #666666;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-align: center;
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

.hero-location {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #666666;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-align: center;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.hero-location:hover {
    color: #e30613;
    transform: translateY(-1px);
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.btn-black, .btn-gray, .btn-red {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 3vw, 1.25rem);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 280px;
    min-height: 56px;
}

/* Accessibility: Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    .btn-black, .btn-gray, .btn-red {
        transition: none;
    }
    
    .lunch-icon {
        animation: none;
    }
    
    .lunch-special::before {
        animation: none;
    }
}

.btn-black {
    background-color: #000000;
    color: #ffffff;
}

.btn-black:hover {
    background-color: #333333;
}

.btn-gray {
    background-color: #999999;
    color: #ffffff;
}

.btn-gray:hover {
    background-color: #777777;
}

.btn-red {
    background-color: #e30613;
    color: #ffffff;
}

.btn-red:hover {
    background-color: #b8040f;
}

/* Rating component styles */
.rating-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    line-height: 1;
    color: #FFC107; /* Google yellow */
}

.star.filled {
    color: #FFC107;
}

.star.empty {
    color: #E0E0E0;
}

.star.partial {
    position: relative;
    display: inline-block;
}

.star.partial-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 10%; /* 0.1 out of 5 stars = 10% */
    overflow: hidden;
    white-space: nowrap;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-logo {
    width: clamp(14px, 2.5vw, 18px);
    height: auto;
    flex-shrink: 0;
}

.rating-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: inline-block;
}

.rating-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.rating-link:active {
    transform: translateY(0);
}

.rating-score {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #000000;
}

.rating-reviews {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666666;
}

/* Menu Categories Section */
.menu-categories {
    padding: 24px;
    background-color: #f8f9fa;
}

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

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.category-card {
    background-color: rgba(248, 249, 250, 0.4); /* bg-muted/40 */
    border-radius: 1.3rem;
    padding: 6px; /* p-1.5 = 6px in Tailwind */
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg shadow-black/5 */
    display: block;
    border: 2px solid rgba(0, 0, 0, 0.08); /* border-2 border-border/80 */
    height: 200px; /* Fixed card height */
    box-sizing: border-box;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #e30613;
}

.category-card:hover .card-content {
    background-color: #fafafa;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ffffff;
    border-radius: 1.1rem;
    padding: 16px; /* p-4 = 16px */
    height: 100%;
    box-sizing: border-box;
}

.category-icon {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 16px;
    display: block;
}

.category-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #000000;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.category-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

/* Lunch Special Section */
.lunch-special {
    background-color: rgba(255, 82, 82, 0.05);
    border-radius: 1.3rem;
    padding: 6px;
    margin-bottom: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(255, 82, 82, 0.2);
    position: relative;
    overflow: visible;
}

.lunch-special-content {
    background-color: #ffffff;
    border-radius: 1.1rem;
    padding: 16px;
    text-align: center;
    position: relative;
}

.lunch-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #e30613;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(0.75rem, 1.8vw, 0.8rem);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lunch-icon {
    font-size: 0.9rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.lunch-price {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #e30613;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.lunch-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lunch-time {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #000000;
    margin: 0;
}

.lunch-includes {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    color: #333333;
    margin: 0;
    line-height: 1.4;
}

.lunch-drink {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    color: #333333;
    margin: 0;
}

.lunch-exclusions {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.75rem, 1.8vw, 0.8rem);
    color: #666666;
    margin: 0;
    font-style: italic;
}


/* Tablet styles */
@media (min-width: 768px) {
    .footer {
        padding: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 40px;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .logo-container {
        top: 6px;
        left: 10px;
    }
    
    .hero {
        max-width: 600px;
    }
    
    .button-container {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .btn-black, .btn-gray, .btn-red {
        width: auto;
        min-width: 160px;
    }
    
    .menu-categories {
        padding: 40px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .category-card {
        padding: 6px;
        height: 220px;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .review-card .card-content {
        padding: 24px;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .footer {
        padding: 60px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 40px;
    }
    
    .logo-container {
        top: 10px;
        left: 15px;
    }
    
    .hero {
        max-width: 800px;
    }
    
    .hero-header {
        font-size: clamp(3rem, 5vw, 5rem);
    }
    
    .hero-subheader {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .button-container {
        gap: 24px;
        margin-top: 32px;
    }
    
    .btn-black, .btn-gray, .btn-red {
        padding: 20px 40px;
        font-size: clamp(1.125rem, 2vw, 1.25rem);
        min-width: 180px;
        min-height: 64px;
    }
    
    .menu-categories {
        padding: 60px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .section-title {
        margin-bottom: 60px;
    }
    
    .category-card {
        padding: 6px;
        height: 240px;
    }
    
    .card-content {
        padding: 32px;
    }
    
    .review-card .card-content {
        padding: 32px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 60px 24px;
    background-color: #f8f9fa;
}

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

.reviews-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.review-card {
    background-color: rgba(248, 249, 250, 0.4);
    border-radius: 1.3rem;
    padding: 6px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 280px;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.review-card .card-content {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 1.1rem;
    padding: 16px;
    height: 100%;
    box-sizing: border-box;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 12px;
    flex-shrink: 0;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-meta {
    flex: 1;
}

.review-username {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #000000;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-rating .star {
    font-size: 1rem;
    line-height: 1;
    color: #FFC107;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666666;
    margin: 0;
    line-height: 1.5;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}

/* Contact Section */
.contact-section {
    padding: 80px 24px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #000000;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.contact-phone {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #000000;
    text-decoration: none;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-phone:hover {
    color: #e30613;
    transform: scale(1.02);
}

.contact-address {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #666666;
    margin: 0;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-address:hover {
    color: #e30613;
    transform: scale(1.02);
}

/* Tablet styles for reviews */
@media (min-width: 768px) {
    .reviews-section {
        padding: 80px 40px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .review-card {
        padding: 6px;
    }
    
    .contact-section {
        padding: 100px 40px;
    }
    
    .contact-phone {
        font-size: clamp(3rem, 7vw, 5.5rem);
    }
}

/* Desktop styles for reviews */
@media (min-width: 1024px) {
    .reviews-section {
        padding: 100px 60px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .review-card {
        padding: 6px;
    }
    
    .contact-section {
        padding: 120px 60px;
    }
    
    .contact-title {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }
    
    .contact-phone {
        font-size: clamp(4rem, 8vw, 6rem);
    }
    
    .contact-address {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }
}

/* Large desktop styles */
@media (min-width: 1440px) {
    .reviews-section {
        padding: 120px 24px;
    }
    
    .reviews-grid {
        gap: 48px;
    }
}

/* Large desktop styles */
@media (min-width: 1440px) {
    .hero {
        max-width: 1000px;
    }
    
    .hero-header {
        font-size: clamp(3.5rem, 4.5vw, 6rem);
    }
    
    .hero-subheader {
        font-size: clamp(2.5rem, 3.5vw, 4rem);
    }
    
    .rating-container {
        gap: 16px;
        margin-top: 20px;
        margin-bottom: 32px;
    }
    
    .star {
        font-size: 1.5rem;
    }
    
    .rating-score {
        font-size: 1.3rem;
    }
    
    .rating-reviews {
        font-size: 1rem;
    }
    
    .menu-categories {
        padding: 24px;
    }
    
    .category-grid {
        gap: 32px;
    }
}
