/* 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;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #5eb6d9, #4a9bc7);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4a9bc7, #5eb6d9);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(94, 182, 217, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #5eb6d9;
    border: 2px solid #5eb6d9;
}

.btn-secondary:hover {
    background: #5eb6d9;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    font-size: 2rem;
    color: #5eb6d9;
    margin: 0;
}

.nav-logo span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #5eb6d9;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5eb6d9;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 600px;
    padding-left: 20px;
}

.hero-title {
    color: #5eb6d9;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.hero-note {
    margin-top: 2rem;
    text-align: left;
}

.hero-note p {
    color: #5eb6d9;
    font-weight: 500;
    font-size: 1rem;
    background: rgba(94, 182, 217, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(94, 182, 217, 0.3);
    display: inline-block;
}

.hero-note i {
    margin-right: 0.5rem;
    color: #4a9bc7;
}

.hero-extra-buttons {
    margin-top: 1.5rem;
    text-align: left;
}

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

.hero-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(94, 182, 217, 0.3);
}

.hero-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #5eb6d9, #4a9bc7);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 20px 40px rgba(94, 182, 217, 0.3);
}

.hero-placeholder p {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 300;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

/* Pure Veg Commitment Section */
.pure-veg-commitment {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(94, 182, 217, 0.05), rgba(74, 155, 199, 0.05));
}

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

.commitment-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #5eb6d9, #4a9bc7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
}

.commitment-content h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.commitment-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.commitment-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.commitment-feature i {
    color: #5eb6d9;
    font-size: 1.2rem;
}

.commitment-feature span {
    color: #333;
    font-weight: 500;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #5eb6d9;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background: rgba(94, 182, 217, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(94, 182, 217, 0.1);
}

.feature i {
    font-size: 2rem;
    color: #5eb6d9;
    margin-top: 0.2rem;
    min-width: 40px;
    text-align: center;
}

.feature h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

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

.about-img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(94, 182, 217, 0.2);
}

.about-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 2.5rem;
    border: 2px dashed #ddd;
}

.about-placeholder p {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 300;
}

/* Menu Section */
.menu {
    padding: 80px 0;
    background: #f8f9fa;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid #5eb6d9;
    background: transparent;
    color: #5eb6d9;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: #5eb6d9;
    color: white;
}

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

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-item.hidden {
    display: none;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-container .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.load-more-container .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(94, 182, 217, 0.3);
}

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

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Fallback for missing images */
.menu-img:not([src]), 
.menu-img[src=""], 
.menu-img[src*="404"] {
    display: none;
}

.menu-item-image:has(.menu-img:not([src])), 
.menu-item-image:has(.menu-img[src=""]), 
.menu-item-image:has(.menu-img[src*="404"]) {
    background: linear-gradient(135deg, #5eb6d9, #4a9bc7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
}

.menu-item-image:has(.menu-img:not([src]))::after, 
.menu-item-image:has(.menu-img[src=""])::after, 
.menu-item-image:has(.menu-img[src*="404"])::after {
    content: '🍽️';
    font-size: 3rem;
}

.menu-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5eb6d9, #4a9bc7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.menu-item-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    color: #5eb6d9;
    font-weight: 600;
    font-size: 1.2rem;
}

.menu-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(94, 182, 217, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(94, 182, 217, 0.3);
}

.menu-note p {
    color: #5eb6d9;
    font-weight: 500;
    margin: 0;
}

.menu-note i {
    margin-right: 0.5rem;
    color: #4a9bc7;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5eb6d9, #4a9bc7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

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

/* Desktop: More compact layout */
@media (min-width: 768px) {
    .contact-content {
        max-width: 600px;
    }
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

/* Desktop: Icons inline with headings */
@media (min-width: 768px) {
    .contact-item {
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 0.5rem !important;
    }
    
    .contact-details {
        flex: 1;
    }
    
    .contact-details h4 {
        text-align: left !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-bottom: 0.5rem;
    }
    
    .contact-details h4 i {
        color: #5eb6d9;
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
        margin-right: 0;
    }
    
    .contact-details p {
        text-align: left !important;
        margin-left: 2.5rem;
    }
}



.contact-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Icon styling within headings */
.contact-details h4 i {
    color: #5eb6d9;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.menu-link {
    color: #5eb6d9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: #4a9bc7;
    text-decoration: underline;
}

.google-review {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
}

.google-review h4 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.quick-actions .btn {
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.walk-in-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    text-align: center;
}

.walk-in-note p {
    color: #2e7d32;
    margin: 0;
    font-size: 0.95rem;
}

.walk-in-note i {
    margin-right: 0.5rem;
    color: #4caf50;
}







/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #5eb6d9;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #5eb6d9;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #5eb6d9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4a9bc7;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 30px 60px;
    }
    
    .hero-content {
        order: 2;
        padding-left: 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-note {
        text-align: center;
    }
    
    .hero-extra-buttons {
        text-align: center;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .hero-img {
        width: 300px;
        height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        text-align: center;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
    }
    
    .commitment-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .load-more-container .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 25px 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-note {
        text-align: center;
    }
    
    .hero-extra-buttons {
        text-align: center;
    }
    
    .hero-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .hero-img {
        width: 250px;
        height: 250px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .commitment-features {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 0.5rem;
    }
    
    .feature i {
        margin-bottom: 0.5rem;
    }
}
