/* Pro Meal - Professional Catering Services CSS */

:root {
    --primary-green: #3D5107;
    --secondary-orange: #F19A13 ;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
    --light-green: #e8f5e8;
    --cream-bg: #FFFAEE;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #666666;
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
    --shadow-heavy: rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    background-color: var(--white);
}

        /* Header Styles */
        .header {
            background: var(--white);
            box-shadow: 0 4px 20px var(--shadow-light);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar {
            padding: 0;
        }
        
        .navbar-brand.logo {
            font-size: 32px;
            font-weight: 900;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            text-decoration: none;
            margin: 0;
        }
        
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
            font-size: 1.25rem;
            line-height: 1;
            background-color: transparent;
            border-radius: 0.375rem;
            transition: box-shadow 0.15s ease-in-out;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(26, 77, 46, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 77, 46, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .navbar-nav.nav-menu {
            list-style: none;
            display: flex;
            gap: 40px;
            margin: 0;
            padding: 0;
            justify-content: center;
        }
        
        .navbar-nav.nav-menu .nav-link {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .navbar-nav.nav-menu .nav-link:hover {
            color: var(--primary-green);
        }
        
        .navbar-nav.nav-menu .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s ease;
        }
        
        .navbar-nav.nav-menu .nav-link:hover::after {
            width: 100%;
        }

.enquiry-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
}

.enquiry-btn:hover {
    background: #0f3d1f;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.4);
}

/* Contact Sidebar */
.contact-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 20px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 1000;
    border-radius: 0 15px 15px 0;
    box-shadow: 8px 0 25px var(--shadow-medium);
}
.chat-whatsapp{
        position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    z-index: 10;
    flex-direction: column;
    align-items: flex-end;
    transition: all 0.3s ease;
}

.contact-sidebar a {
    margin: 15px 0;
    font-weight: 700;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background: url('../images/banner-bg.jpg') no-repeat center center;
    padding: 180px 0 100px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e8f5e8" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e8f5e8" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 50px;
    font-weight: 900;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-description {
    font-size: 22px;
    color: var(--gray-medium);
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 650px;
    font-weight: 400;
}

.menu-section-box{
    width: 100%;
    height: 100%;
    background-color:#fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-light);
    margin-bottom: 30px;
    overflow: hidden !important;
    padding-left: 20px;
}

.btn-primary-custom {
    background: var(--primary-green);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 35px;
    text-decoration: none;
    margin-right: 25px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(26, 77, 46, 0.3);
}

.btn-primary-custom:hover {
    background: #0f3d1f;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(26, 77, 46, 0.4);
}

.btn-secondary-custom {
    background: var(--secondary-orange);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary-custom:hover {
    background: #e55a2b;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 25px 50px var(--shadow-medium);
    border: 12px solid var(--white);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
    box-shadow: 0 35px 70px var(--shadow-heavy);
}

/* Section Styles */
.section {
    padding: 120px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    color: var(--dark-text);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-orange));
    border-radius: 3px;
}

/* About Section */
.about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-medium);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--shadow-heavy);
}

.about-text {
    font-size: 20px;
    line-height: 1.9;
    color: var(--gray-medium);
    font-weight: 400;
}

/* Services Section */
.services-section {
    padding: 140px 0;
    background: var(--cream-bg);
}

.sectionheadding{
    font-size: 40px;
    font-weight: 900;
    color: var(--dark-text);
    margin-bottom: 20px;
}
.services-text {
    font-size: 20px;
    line-height: 1.9;
    color: var(--dark-text);
    margin: 0;
    font-weight: 500;
}

/* Booking Form Section */
.booking-form {
    background: var(--white);
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 25px 60px var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-orange));
}

.form-group {
    margin-bottom: 30px;
}

.form-control {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(26, 77, 46, 0.1);
    transform: translateY(-2px);
}

/* Menu Section */
.menu-section {
    background: var(--primary-green);
    color: #242424;
    padding: 120px 0;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="menu-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23menu-pattern)"/></svg>');
}

.menu-content {
    position: relative;
    z-index: 2;
}

.menu-section h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 35px;
}

.menu-section p {
    font-size: 20px;
    line-height: 1.9;
    opacity: 0.95;
    font-weight: 400;
}

/* Statistics Section */
.stats-section {
    background: var(--gray-light);
    padding: 120px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e8f5e8"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
}

.stat-card {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    border-radius: 25px;
    box-shadow: 0 20px 40px var(--shadow-light);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px var(--shadow-medium);
}

.stat-number {
    font-size: 44px;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: -5px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.stat-card p {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px var(--shadow-heavy);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    padding-bottom: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
}

.footer-section {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    text-align: left;
}

.footer-section h4 {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.footer-section p {
    line-height: 1.9;
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    opacity: 0.9;
    font-size: 16px;
}

.footer-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-orange);
    font-weight: bold;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: flex-start;
}

.social-icons a {
    color: var(--white);
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icons a:hover {
    background: var(--secondary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.footer-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-gallery img:hover {
    transform: scale(1.15);
}

.copyright {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 80px;
    position: relative;
    z-index: 2;
    font-size: 16px;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    margin-top: 60px;
    animation: bounce 2s infinite;
}

.scroll-indicator::before {
    content: "🖱️";
    font-size: 35px;
    display: block;
    margin-bottom: 15px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

        /* Responsive Design */
        @media (max-width: 991px) {
            .navbar-nav.nav-menu {
                flex-direction: column;
                gap: 0;
                text-align: center;
                padding: 0px 0;
            }
            
            .navbar-nav.nav-menu .nav-item {
                margin: 0px 0;
            }
            
            .navbar-nav.nav-menu .nav-link {
                padding: 10px 0;
                font-size: 18px;
            }
            
            .navbar-nav.nav-menu .nav-link::after {
                display: none;
            }
            
            .navbar-nav .enquiry-btn {
                margin: 10px auto 10px;
                display: inline-block;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 42px;
            }
            
            .contact-sidebar {
                display: none;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .services-section {
                padding: 80px 0;
            }
            
            .services-content {
                padding: 30px 20px;
                text-align: left;
                margin-bottom: 30px;
            }
            
            .booking-form {
                padding: 30px 20px;
                padding-top: 50px !important;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .footer-gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Menu section mobile fixes */
            .menu-section {
                padding: 80px 0;
            }

            .menu-section-box {
                padding: 30px 20px !important;
                margin: 0 15px;
            }

            .menu-content {
                text-align: left;
                margin-bottom: 30px;
            }

            .menu-content h2 {
                font-size: 32px;
                margin-bottom: 20px;
            }

            .menu-content p {
                font-size: 18px;
                line-height: 1.6;
            }

            /* Form field labels for mobile */
            .form-group {
                position: relative;
                margin-bottom: 25px;
            }

            .form-group label {
                position: absolute;
                top: -10px;
                left: 15px;
                background: white;
                padding: 0 8px;
                font-size: 12px;
                color: var(--primary-green);
                font-weight: 600;
                z-index: 1;
            }

            .form-control {
                padding: 15px 20px;
                font-size: 18px;
            }

            /* Stats section mobile */
            .stats-section {
                padding: 80px 0;
            }

            .stat-card {
                padding: 30px 20px;
                margin-bottom: 20px;
            }

            .stat-number {
                font-size: 36px;
            }

            .stat-card p {
                font-size: 18px;
            }

            /* About section mobile */
            .about-text {
                font-size: 18px;
                line-height: 1.6;
                text-align: left;
            }

            .about-image {
                margin-bottom: 30px;
            }

            /* Hero section mobile */
            .hero-section {
                padding: 140px 0 80px;
                min-height: auto;
                padding-bottom: 0 !important;
            }

            .hero-content {
                text-align: center;
                margin-bottom: 40px;
                margin-top: 50px;
            }

            .hero-buttons {
                display: flex;
                gap: 0;
                align-items: center;
                justify-content: center;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                width: auto;
                max-width: 250px;
                text-align: center;
            }
        }

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 25px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .sectionheadding {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .services-content {
        padding: 0;
    }
    
    .booking-form {
        padding: 20px 15px;
    }

    .section {
        padding: 50px 0;
    }

    .services-section {
        padding: 40px 0;
    }

    .menu-section {
        padding: 60px 0;
    }

    .stats-section {
        padding: 60px 0;
    }

    /* Menu section extra small fixes */
    .menu-section-box {
        padding: 20px 15px !important;
        margin: 0 10px;
    }

    .menu-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .menu-content p {
        font-size: 18px;
        line-height: 1.5;
    }

    /* Form improvements for extra small */
    .form-group {
        margin-bottom: 20px;
    }

    .form-control {
        padding: 12px 15px;
        font-size: 15px;
    }

    .form-group label {
        font-size: 13px;
        top: -8px;
        left: 12px;
    }

    /* Stats cards extra small */
    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-card p {
        font-size: 18px;
    }

    /* Gallery grid extra small */
    .gallery-grid {
        gap: 15px;
    }

    .gallery-item img {
        height: 250px;
    }

    /* Footer extra small */
    .footer {
        padding: 60px 0 20px;
    }

    .footer-section {
        margin-bottom: 30px;
        text-align: left;
    }

    .footer-section h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 18px;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-gallery img {
        height: 80px;
    }

    /* About section extra small */
    .about-text {
        font-size: 18px;
        line-height: 1.5;
    }

    /* Services section extra small */
    .services-text {
        font-size: 18px;
        line-height: 1.5;
    }

    /* Hero section extra small */
    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .hero-description {
        margin-bottom: 25px;
    }

    /* Navigation extra small */
    .navbar-brand.logo {
        font-size: 24px;
    }

    .navbar-nav.nav-menu .nav-link {
        font-size: 18px;
        padding: 8px 0;
    }

    .enquiry-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .copyright{margin-top: 30px;}
    #about{padding-top: 0;}
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .sectionheadding {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .menu-section-box {
        padding: 15px 10px !important;
        margin: 0 5px;
    }

    .menu-content h2 {
        font-size: 20px;
    }

    .menu-content p {
        font-size: 15px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 10px 20px;
        font-size: 14px;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-card p {
        font-size: 14px;
    }

    .gallery-item img {
        height: 200px;
    }

    .footer-gallery img {
        height: 70px;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 14px;
    }
} 