/* 
   Magenta Catering Services - Main Stylesheet
   Colors:
   - Primary (Magenta): #b10058
   - Secondary (Green): #00995c
   - Accent (Gray): #757575
   - Light Gray: #f8f9fa
   - Dark: #333333
   - White: #ffffff
*/

:root {
    --magenta: #b10058;
    --green: #00995c;
    --gray: #757575;
    --light-gray: #f8f9fa;
    --dark: #333333;
    --white: #ffffff;
    --magenta-light: #e6c0d4;
    --green-light: #c0e6d4;
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

a {
    color: var(--magenta);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--green);
}

.section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--magenta);
    margin-bottom: 15px;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--green);
    margin-bottom: 20px;
}

.btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-magenta {
    background-color: var(--magenta);
    color: var(--white);
    border: 2px solid var(--magenta);
}

.btn-magenta:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--magenta);
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--magenta);
}

.navbar-brand span {
    color: var(--magenta);
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--magenta) !important;
    background-color: rgba(177, 0, 88, 0.1);
}

.logo {
    fill: var(--magenta);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1619221882220-947b3d3c8861?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80') no-repeat center center/cover;
    height: 100vh;
    min-height: 600px;
    position: relative;
    color: var(--white);
}

.counter-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--dark);
    text-align: center;
    margin-top: 20px;
}

.counter-card h3 {
    color: var(--magenta);
    margin-bottom: 15px;
}

.meal-counter {
    font-size: 40px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
}

.certifications {
    margin-top: 15px;
}

.certifications .badge {
    margin-right: 5px;
    font-weight: 500;
    padding: 8px 15px;
    margin-bottom: 5px;
    display: inline-block;
}

.zadna-badge {
    background-color: rgba(247, 147, 30, 0.2) !important;
    color: #0a3c5c !important;
    border: 1px solid #f7931e;
}

.zadna-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.zadna-logo {
    max-width: 100%;
    height: auto;
}

/* About Section */
.about-image-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-card .icon {
    font-size: 36px;
    color: var(--magenta);
    margin-bottom: 15px;
}

.about-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--green);
}

.ebg-text {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 5px;
}

.ebg-logo-container {
    margin: 15px 0;
    max-width: 200px;
}

.ebg-logo {
    width: 100%;
    height: auto;
}

/* Services Section */
.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--magenta-light);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--magenta);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Cuisines Section */
.cuisine-card {
    background-color: var(--white);
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.cuisine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cuisine-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--green-light);
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--green);
}

.cuisine-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--magenta);
}

.cuisine-card p {
    font-size: 14px;
    color: var(--gray);
}

/* Feature Cards */
.feature-card {
    background-color: var(--white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: var(--magenta-light);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--magenta);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--green);
}

/* Contact Section */
.contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--magenta);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-item p {
    margin-bottom: 0;
    color: var(--gray);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer h5 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--magenta);
}

.footer-logo {
    margin-bottom: 20px;
}

.logo-white {
    fill: var(--white);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--magenta);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--magenta);
    margin-right: 10px;
    margin-top: 5px;
}

.footer .certifications .badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section {
        padding: 80px 0;
    }
    
    .hero-section {
        height: auto;
        padding: 100px 0;
    }
    
    .counter-card {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .about-image-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-item i {
        margin-bottom: 10px;
    }
}
