/* 
    Ladli Tiffin Service - Custom Style
    Theme: Deep Green & Soft Cream
*/

:root {
    --primary-color: #344e41;       /* Deep green */
    --primary-light: #588157;
    --accent-color: #a3b18a;
    --secondary-bg: #fefae0;        /* Soft cream */
    --text-dark: #1b4332;
    --light-text: #636e72;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
.navbar-brand img {
    height: 55px;
    margin-right: 10px;
}
.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-light) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../image/hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
}
.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Specific Hero Banners */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../image/about_banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}
.menu-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../image/menu_banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}
.plans-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../image/plans_banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../image/contact_banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}


/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary-custom:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 78, 65, 0.3);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Sections */
.section-padding {
    padding: 80px 0;
}
.bg-cream {
    background-color: var(--secondary-bg);
}

/* Cards */
.custom-card {
    border: none;
    border-radius: 20px;
    background-color: var(--white);
    transition: all 0.3s;
    overflow: hidden;
    height: 100%;
}
.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Menu Page & Cards */
.menu-card, .dish-card {
    border: 1px solid #eee;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: all 0.3s;
    background: white;
}
.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.menu-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
    font-weight: 700;
}
.menu-body, .menu-content {
    padding: 2rem;
}
.veg-tag { color: var(--primary-light); font-weight: 600; }
.nonveg-tag { color: #d63031; font-weight: 600; }
.dish-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Plans Page */
.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}
.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

/* Contact Page */
.contact-icon-box, .contact-preview-card i {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.contact-preview-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
}

/* Delivery Areas */
.area-badge {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    margin: 5px;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Why Choose Us */
.check-icon {
    color: var(--primary-light);
    font-size: 1.2rem;
    margin-right: 10px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 20px;
    font-size: 0.9rem;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color) !important;
}
.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}
.footer-links {
    list-unstyled: true;
    padding-left: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}
.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}
.social-icons a {
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
}
.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}
.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 30px 0 20px;
}
.footer-bottom {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

/* Text Colors */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.text-success { color: var(--primary-light) !important; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.5rem; }
    .hero-section p { font-size: 1.1rem; }
    .section-padding { padding: 50px 0; }
}
