/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo-img {
    height: 115px;
    width: auto;
    background: #3e8b42;
    padding: 2px;
    border-radius: 6px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #c8e6c9;
}

.order-btn {
    background: white;
    color: #3e8b42 !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.order-btn:hover {
    background: #f1f8e9;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f1f8e9, #e8f5e8);
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    padding: 2rem;
}

.hero-logo-area {
    text-align: center;
    margin-bottom: 2rem;
}

.main-logo {
    height: 200px;
    width: auto;
    background: #c8e6c9;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.hero h2 {
    font-size: 3rem;
    color: #3e8b42;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.hero-story {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-story p {
    font-size: 1.1rem;
    color: #3e8b42;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hero-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-info h3 {
    color: #3e8b42;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hero-info p {
    color: #555;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3e8b42, #4caf50);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    margin: 0 auto;
    display: block;
    text-align: center;
    max-width: 200px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
/* About Section */
.about {
    padding: 4rem 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #3e8b42;
    margin-bottom: 3rem;
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h3 {
    color: #4caf50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-logo-section {
    text-align: center;
}

.about-logo {
    height: 150px;
    width: auto;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
    margin-bottom: 2rem;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-images img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #4caf50;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
}

/* Menu Section */
.menu {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f1f8e9, #e8f5e8);
}

.menu h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 2rem;
    font-weight: 700;
}

.menu-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.menu-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.menu-images {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.menu-carousel {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.menu-image-container {
    display: none;
    text-align: center;
}

.menu-image-container.active {
    display: block;
}

.menu-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    border: 3px solid #4caf50;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.menu-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.3);
}

.menu-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.menu-prev,
.menu-next {
    background: rgba(46, 125, 50, 0.8);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 0.8rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-prev:hover,
.menu-next:hover {
    background: rgba(46, 125, 50, 1);
    transform: scale(1.1);
}

.menu-prev {
    margin-left: -60px;
}

.menu-next {
    margin-right: -60px;
}

.menu-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.menu-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.menu-dot.active {
    background: #4caf50;
}

.menu-image-caption {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f1f8e9;
    border-radius: 10px;
    border: 1px solid #e8f5e8;
}

.menu-image-caption h3 {
    color: #2e7d32;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-image-caption p {
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
}

.menu-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #e8f5e8;
}

.menu-note {
    font-size: 1.1rem;
    color: #2e7d32;
    font-weight: 500;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: white;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 2rem;
    font-weight: 700;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.gallery-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #4caf50;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 125, 50, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2rem;
    color: white;
}

/* Gallery Modal/Lightbox */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gallery-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.gallery-close:hover {
    color: #4caf50;
}

.gallery-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.gallery-prev,
.gallery-next {
    background: rgba(46, 125, 50, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(46, 125, 50, 1);
    transform: scale(1.1);
}

.gallery-prev {
    margin-left: -80px;
}

.gallery-next {
    margin-right: -80px;
}

.gallery-counter {
    margin-top: 1rem;
    color: white;
    font-size: 1.1rem;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Location Section */
.location {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f1f8e9, #e8f5e8);
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 3rem;
    font-weight: 700;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
    border: 2px solid #4caf50;
}

.location-item h3 {
    font-size: 1.3rem;
    color: #4caf50;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.address-block {
    text-align: center;
    margin-bottom: 1rem;
}

.address-block p {
    font-size: 1rem;
    color: #2e7d32;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.address-block p:first-child {
    font-weight: 600;
    color: #2e7d32;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #4caf50;
    box-shadow: 0 3px 10px rgba(46, 125, 50, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

.locations-summary {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #4caf50;
}

.locations-note {
    font-size: 1.1rem;
    color: #2e7d32;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.location-logo {
    height: 150px;
    width: auto;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.2);
    margin-bottom: 2rem;
    border: 3px solid #4caf50;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #4caf50;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #f1f8e9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.05);
    border: 1px solid #e8f5e8;
}

.contact-item h3 {
    color: #3e8b42;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.view-menu-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.view-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.hours p {
    margin-bottom: 0.5rem;
    color: #555;
}

.hours span {
    font-weight: 600;
    color: #3e8b42;
    display: inline-block;
    width: 40px;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #3e8b42;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1b5e20, #3e8b42);
    color: white;
    text-align: center;
    padding: 3rem 0 2rem;
}

.footer-logo-section {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 175px;
    width: auto;
    background: linear-gradient(135deg, #1b5e20, #3e8b42);
    padding: 2px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.footer p {
    color: #c8e6c9;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .header-logo-img {
        height: 40px;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-info {
        justify-content: center;
    }
    
    .main-logo {
        height: 80px;
    }
    
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .menu-image {
        max-width: 100%;
    }
    
    .menu-prev {
        margin-left: -50px;
    }
    
    .menu-next {
        margin-right: -50px;
    }
    
    .menu-prev,
    .menu-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-item {
        padding: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-prev {
        margin-left: -60px;
    }
    
    .gallery-next {
        margin-right: -60px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .about-logo,
    .location-logo {
        height: 80px;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        height: 50px;
    }
}