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

:root {
    --primary-color: #c41e3a;
    --primary-dark: #a01829;
    --primary-light: #e8556d;
    --secondary-color: #f8f8f8;
    --text-dark: #2c2c2c;
    --text-gray: #666;
    --text-light: #999;
    --white: #ffffff;
    --border-light: #e5e5e5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 48px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
}

.nav-brand .logo {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sign-in-btn {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.sign-in-btn:hover {
    color: var(--primary-color);
}

.order-btn {
    padding: 10px 20px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 2px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-bg {
    background-image: url('https://wuufuewpbgciitslfvbl.supabase.co/storage/v1/object/public/restaurant-images/photos/1753295544606-photo-6');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-content {
    text-align: left;
    color: var(--white);
    max-width: 800px;
    padding: 3rem 3rem;
    z-index: 1;
    margin-bottom: 2rem;
}

.hero-tagline {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.services-line {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.8;
}

.hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        4px 4px 8px rgba(0, 0, 0, 0.6),
        0px 0px 16px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    font-weight: 800;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    padding: 1.5rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Menu Section */
.menu-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-text {
    padding-right: 2rem;
}

.menu-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.menu-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-weight: 600;
}

.menu-btn::after {
    content: '→';
    font-size: 1.2rem;
    transition: var(--transition);
}

.menu-btn:hover::after {
    transform: translateX(4px);
}

.menu-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 400px;
}

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

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

.menu-note {
    margin-top: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.menu-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.menu-note a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

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

.review-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.review-rating {
    margin-bottom: 1rem;
}

.review-rating span {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

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

.review-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.owner-quote {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
    box-shadow: var(--shadow);
}

.owner-quote cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* Dishes Section */
.dishes {
    padding: 6rem 0;
}

.dishes h2 {
    text-align: center;
    margin-bottom: 1rem;
}

/* Horizontal Scrolling Dishes */
.dishes-conveyor {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.dish-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.dish-image {
    height: 200px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

/* Zoom in on specific dish images for closer food view */
.dish-card:nth-child(2) .dish-image img,
.dish-card:nth-child(3) .dish-image img,
.dish-card:nth-child(4) .dish-image img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.2);
}

.dish-card:hover .dish-image img {
    transform: scale(1.05);
}

.dish-content {
    padding: 1.5rem;
}

.dish-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.dish-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dish-order-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    width: 100%;
}

.dish-order-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Hours Section */
.hours {
    padding: 6rem 0;
}

.hours-content {
    max-width: 800px;
    margin: 0 auto;
}

.hours h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.hours-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.hours-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

.hours-list li span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-list li span:last-child {
    color: var(--text-gray);
}

.delivery-areas {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.delivery-areas h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.delivery-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-line {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.contact-line strong {
    color: var(--text-dark);
    font-weight: 600;
    display: inline-block;
    min-width: 110px;
}

.contact-line a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-line a:hover {
    color: var(--primary-color);
}

.map-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.map-container iframe {
    border-radius: var(--border-radius);
    width: 100%;
    height: 100%;
}

.social-media {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.social-media h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.social-link {
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
}

.social-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem 0 1rem;
}

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

.footer-brand {
    flex-shrink: 0;
}

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

.footer-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.footer-menu li a {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-menu li a:hover {
    color: var(--primary-color);
}

.footer-cta {
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 0.75rem;
    text-align: center;
    margin-top: 0.75rem;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        display: flex;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background-color: #f8f8f8;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-actions .sign-in-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-text h2 {
        font-size: 2.75rem;
        max-width: 100%;
        padding: 1.25rem 1.5rem;
        border-radius: 10px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .services-line {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .dishes-conveyor .dish-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .menu-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .menu-text {
        padding-right: 0;
    }
    
    .menu-image {
        height: 300px;
    }
    
    .menu-image img {
        height: 100%;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-nav {
        margin: 0;
        order: 2;
    }
    
    .footer-menu {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .footer-cta {
        order: 3;
    }
    
    .footer-brand {
        order: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem 15px;
    }
    
    .hero-text h2 {
        font-size: 2.25rem;
        padding: 1rem 1.25rem;
        border-radius: 8px;
        line-height: 1.2;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .dishes, .gallery, .hours, .contact, .about {
        padding: 4rem 0;
    }
    
    .dish-content, .contact-card, .social-media, .hours-section {
        padding: 1.5rem;
    }
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 6px 12px;
    z-index: 1000;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-sticky-footer.show {
    transform: translateY(0);
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.2s ease;
    flex: 1;
    max-width: none;
    white-space: nowrap;
}

.call-btn {
    background: white;
    color: #333;
    border: 1px solid #e0e0e0;
}

.call-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
}

.order-btn {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.order-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.arrow {
    font-size: 10px;
    opacity: 0.7;
}

/* Show sticky footer only on mobile */
@media (max-width: 768px) {
    .mobile-sticky-footer {
        display: flex;
        gap: 8px;
        justify-content: center;
    }
    
    /* Add bottom padding to body to prevent content from being hidden behind sticky footer */
    body {
        padding-bottom: 50px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --text-gray: #000;
        --border-light: #000;
    }
} 