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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* --- menu thumbnail --- */
.menu-thumb {
  width: 220px;          /* pick any thumbnail width */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / .15);
  cursor: zoom-in;
  transition: transform .25s;
}

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

.menu-section .thumb-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Header and Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 1rem 0;
}

.top-bar {
    background: #ff4d4d;
    padding: 0.5rem 0;
    font-family: 'Oswald', sans-serif;
}

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

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

.logo img {
    height: 60px;
}

.phone-number {
    color: #ff4d4d;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oswald', sans-serif;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: white;
}

.phone-number i {
    font-size: 1rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff4d4d;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #ff4d4d;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    text-align: center;
}

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

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    padding: 1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #ff4d4d;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    padding: 2rem;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff4d4d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff3333;
}

/* Menu Section */
.menu-section {
    padding: 6rem 2rem;
    background-color: #f8f8f8;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), transparent);
    pointer-events: none;
}

.menu-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: #333;
    position: relative;
    padding-bottom: 1rem;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff4d4d;
}

.menu-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.menu-section .thumb-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
}

.menu-section .thumb-row a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.menu-thumb {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
    object-fit: cover;
    background-color: white;
}

.menu-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
    text-align: center;
}

.contact-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-details i {
    color: #ff4d4d;
    margin-right: 0.5rem;
}

.contact-details a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff4d4d;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 2rem;
    text-align: center;
}

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

.social-links {
    margin-top: 1rem;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ff4d4d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .menu-section {
        padding: 4rem 1rem;
    }

    .menu-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .menu-section .thumb-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .menu-thumb {
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .phone-number {
        font-size: 1rem;
    }

    .nav-left {
        gap: 1rem;
    }

    .logo img {
        height: 50px;
    }
}

.menu-download {
    text-align: center;
    margin-bottom: 2rem;
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #ff4d4d;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.2);
}

.pdf-link:hover {
    background-color: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 77, 77, 0.3);
}

.pdf-link i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .menu-download {
        margin-bottom: 1.5rem;
    }

    .pdf-link {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
}

.hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hours h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours h3 i {
    color: #ff4d4d;
}

.hours-grid {
    display: grid;
    gap: 0.75rem;
}

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

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

.hours-row .day {
    font-weight: 500;
    color: #333;
}

.hours-row .time {
    color: #666;
}

@media (max-width: 768px) {
    .hours {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .hours h3 {
        font-size: 1.2rem;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .hours-row .time {
        font-size: 0.9rem;
    }
} 