* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    padding: 20px 50px;
    background: #1a1a1a;
    /* Dark gray to match theme */
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.hamburger {
    display: none;
    /* Hidden by default on larger screens */
    font-size: 30px;
    color: #ff4500;
    /* Orange-red to match theme */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hamburger.active {
    transform: rotate(90deg);
    /* Rotate icon when active */
}

.nav-links {
    display: flex;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff4500;
    /* Orange-red on hover */
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.btn {
    padding: 15px 30px;
    background: #ff4500;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e63900;
}

/* Gallery Section */
.gallery {
    padding: 80px 50px;
    background: #fff;
    text-align: center;
}

.gallery h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #8b0000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Menu Section */
.menu {
    padding: 80px 50px;
    background: #fff8f0;
    text-align: center;
}

.menu h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #8b0000;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.menu-item h3 {
    margin-bottom: 10px;
    color: #ff4500;
}

/* Branches Section */
.branches {
    padding: 80px 50px;
    background: #fff;
    text-align: center;
}

.branches h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #8b0000;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.branch-item {
    background: #fff8f0;
    padding: 20px;
    border-radius: 10px;
}

/* Reservation Section */
.reservation {
    padding: 80px 50px;
    text-align: center;
    background: #fff;
}

.reservation h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #8b0000;
}

.payment-note {
    font-size: 16px;
    color: #ff4500;
    margin-bottom: 20px;
}

.reservation form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation input,
.reservation select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.reservation input:read-only,
.reservation select:read-only {
    background: #f0f0f0;
    cursor: not-allowed;
}

/* Reviews Section */
.reviews {
    padding: 80px 50px;
    background: url('https://images.unsplash.com/photo-1517248135467-2c7ed3ab7229') no-repeat center;
    background-size: cover;
    position: relative;
    text-align: center;
    color: #fff;
}

/* Overlay to make text readable over background */
.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.reviews h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2e8b57;
    position: relative;
    z-index: 2;
}

.review-slider {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.review-track {
    display: flex;
    animation: slide 20s linear infinite;
}

.review-item {
    min-width: 300px;
    margin: 0 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.review-item p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.review-item h4 {
    font-size: 14px;
    color: #2e8b57;
}

/* Animation for right-to-left sliding */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Contact Section */
.contact {
    padding: 80px 50px;
    background: #fff8f0;
    text-align: center;
}

.contact h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #8b0000;
}

.contact-info p {
    font-size: 18px;
    margin: 10px 0;
}

/* Footer */
footer {
    padding: 10px;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        max-height: 0;
        opacity: 0;
        position: absolute;
        top: 70px;
        /* Adjust based on header height */
        left: 0;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        overflow: hidden;
        z-index: 999;
    }

    .nav-links.active {
        max-height: 400px;
        /* Increased for six nav items */
        opacity: 1;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
        display: block;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .gallery,
    .menu,
    .branches,
    .reservation,
    .contact,
    .reviews {
        padding: 40px 20px;
    }

    .review-item {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .review-item {
        min-width: 200px;
    }
}