* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Gallery Section */
.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 3px solid #F5E6D3;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: #8B4513;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(62,39,35,0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #F5E6D3;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-controls {
    text-align: center;
    margin-top: 2rem;
}

.gallery-btn {
    background: linear-gradient(135deg, #8B4513, #654321);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(139,69,19,0.3);
    border: 2px solid transparent;
}

.gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,69,19,0.5);
    border-color: #F5E6D3;
}

.gallery-btn.active {
    background: linear-gradient(135deg, #654321, #3E2723);
    box-shadow: 0 5px 15px rgba(139,69,19,0.6);
    border-color: #F5E6D3;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #8B4513, #654321, #3E2723);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-img {
    height: 60px;
    width: 60px;
    margin-right: 1rem;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    object-fit: cover;
    background: white;
    padding: 2px;
}

.logo-text {
    font-size: 15px;
    color: #F5E6D3;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a:hover {
    background: rgba(245,230,211,0.2);
    transform: translateY(-2px);
    color: #F5E6D3;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url(images/hero-bg\ \(1\).jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}


.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 90px;
    margin-bottom: 1rem;
    text-shadow: 10px 10px 10px rgba(0,0,0,0.7);
    background-clip: text;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8B4513, #654321);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139,69,19,0.4);
    border: 2px solid #F5E6D3;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139,69,19,0.6);
    background: linear-gradient(135deg, #654321, #3E2723);
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #3E2723;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #8B4513, #654321);
    border-radius: 2px;
}

/* About Section */
.about {
    background: #F5E6D3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3E2723;
}

.about-image {
    text-align: center;
}

.about-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139,69,19,0.3);
    transition: transform 0.3s ease;
    border: 3px solid white;
}

.about-img:hover {
    transform: scale(1.05);
}

/* Menu Section */
.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    gap: 1rem;
}

.menu-category-btn {
    background: linear-gradient(135deg, #8B4513, #654321);
    color: white;
    border: 2px solid transparent;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(139,69,19,0.3);
}

.menu-category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,69,19,0.5);
    border-color: #F5E6D3;
}

.menu-category-btn.active {
    background: linear-gradient(135deg, #654321, #3E2723);
    border-color: #F5E6D3;
    box-shadow: 0 5px 15px rgba(139,69,19,0.6);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


.menu-img {
    width: 100%;
    height: 180px;   /* adjust based on your layout */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.menu-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #8B4513;
}

.menu-item h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.menu-item p {
    color: #3E2723;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.menu-pricing {
    margin-top: auto;
}

.price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #654321;
    background: #F5E6D3;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.menu-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #F5E6D3;
    border-radius: 15px;
    border: 2px solid #8B4513;
}

.menu-contact p {
    color: #3E2723;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #3E2723, #654321, #8B4513);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(245,230,211,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245,230,211,0.2);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #F5E6D3;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #3E2723;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 10px rgba(139,69,19,0.3);
}

.contact-form button {
    background: linear-gradient(135deg, #F5E6D3, white);
    color: #8B4513;
    padding: 1rem 2rem;
    border: 2px solid #8B4513;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, white, #F5E6D3);
}

/* Footer */
footer {
    background: #1A1A1A;
    color: #F5E6D3;
    text-align: center;
    padding: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    /* Menu items should be visible on mobile */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-controls {
        flex-wrap: wrap;
    }

    .gallery-btn {
        margin: 0.5rem 0.25rem;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 1rem;
    }

    /* Mobile pagination styles - larger touch targets */
    .pagination-container {
        margin: 2rem 0;
        gap: 0.3rem;
        flex-wrap: wrap;
    }

    .pagination-btn {
        padding: 1rem 1.5rem;
        min-width: 48px;
        font-size: 1rem;
    }

    .pagination-info {
        width: 100%;
        text-align: center;
        margin: 1rem 0 0 0;
        font-size: 0.9rem;
    }
    }
    /* Mobile pagination styles - larger touch targets */
    .pagination-container {
        margin: 2rem 0;
        gap: 0.3rem;
        flex-wrap: wrap;
    }

    .pagination-btn {
        padding: 1rem 1.5rem;
        min-width: 48px;
        font-size: 1rem;
    }

    .pagination-info {
        width: 100%;
        text-align: center;
        margin: 1rem 0 0 0;
        font-size: 0.9rem;
    }


/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-btn {
    background: linear-gradient(135deg, #8B4513, #654321);
    color: white;
    border: 2px solid transparent;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(139,69,19,0.3);
    min-width: 40px;
}

.pagination-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,69,19,0.5);
    border-color: #F5E6D3;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #654321, #3E2723);
    border-color: #F5E6D3;
    box-shadow: 0 5px 15px rgba(139,69,19,0.6);
}

.pagination-info {
    color: #3E2723;
    font-weight: bold;
    margin: 0 1rem;
    font-size: 1rem;
}

.menu-item.hidden {
    display: none !important;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-btn {
    background: linear-gradient(135deg, #8B4513, #654321);
    color: white;
    border: 2px solid transparent;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(139,69,19,0.3);
    min-width: 40px;
}

.pagination-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,69,19,0.5);
    border-color: #F5E6D3;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #654321, #3E2723);
    border-color: #F5E6D3;
    box-shadow: 0 5px 15px rgba(139,69,19,0.6);
}

.pagination-info {
    color: #3E2723;
    font-weight: bold;
    margin: 0 1rem;
    font-size: 1rem;
}

.menu-item.hidden {
    display: none !important;
}

/* Override mobile media query to ensure menu items are visible */
@media (max-width: 768px) {
    #menu .menu-item {
        display: block !important;
    }
}
