:root {
    --primary-color: #28a745;
    --primary-dark: #218838;
    --primary-light: #d4edda;
    --secondary-color: #343a40;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
    background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banners/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 30px;
}

/* About Page Styles */
.hero-about {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banners/about-hero.jpg');
    background-size: cover;
    background-position: center;
}

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-success-light {
    background-color: rgba(40, 167, 69, 0.1);
}

.team-card .social-links a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    margin: 0 3px;
    color: var(--dark-color);
    transition: all 0.3s;
}

.team-card .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Page Styles */
.hero-contact {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banners/contact-hero.jpg');
    background-size: cover;
    background-position: center;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.125);
}

.category-card {
    transition: transform 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    height: 200px;
    object-fit: cover;
}

.product-card {
    transition: all 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.product-card .badge {
    font-size: 0.8rem;
}

.special-offer {
    background-color: var(--primary-light);
    border-left: 5px solid var(--primary-color);
}

.testimonial-card {
    border-left: 4px solid var(--primary-color);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.footer {
    background-color: var(--secondary-color);
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
}