:root {
    --primary-color: #2B5F41; /* Dark Green */
    --secondary-color: #E4A853; /* Golden Yellow */
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
}

/* Typography */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #234D35;
    border-color: #234D35;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    padding-bottom: 0;
}

.hero-section .carousel-indicators {
    bottom: 30px;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 5%;
}

/* Section Styles */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 600;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 1rem;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.product-card img {
    height: 300px;
    /* object-fit: cover; */
}

/* Quality Items */
.quality-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-5px);
}

/* Testimonial Cards */
.testimonial-card {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card .card-body {
    padding: 2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(43, 95, 65, 0.9), rgba(43, 95, 65, 0.9)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Footer */
.footer a {
    color: var(--light-gray);
    text-decoration: none;
}

.footer a:hover {
    color: var(--secondary-color);
}

.map-container {
    height: 250px;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
