:root {
    --primary-color: #00a859;
    --secondary-color: #f8f9fa;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Lexend', sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #008a4a;
    border-color: #008a4a;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    color: var(--primary-color);
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0;
    margin-top: 3rem;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Carousel Styles */
.carousel-item img {
    display: block;
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.carousel-item img.object-fit-cover {
    height: 300px;
    max-height: 60vh;
}

.carousel-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    border-radius: 10px;
}

/* Button Styles */
.btn-warning {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: white;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #e67711;
    border-color: #e67711;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (min-width: 768px) {
    #mainCarousel {
        margin-top: 7% !important;
    }

    .carousel-item img.object-fit-cover {
        height: 400px;
    }
}

@media (min-width: 1200px) {
    #mainCarousel {
        margin-top: 5% !important;
    }

    .carousel-item img.object-fit-cover {
        height: 500px;
    }

    /* Placeholder styles for all inputs */
    input::placeholder,
    textarea::placeholder {
        color: #6c757d !important;
        opacity: 1;
    }

    /* Vendor prefixes for placeholder */
    input::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder {
        color: #6c757d !important;
    }

    input:-ms-input-placeholder,
    textarea:-ms-input-placeholder {
        color: #6c757d !important;
    }

    input::-ms-input-placeholder,
    textarea::-ms-input-placeholder {
        color: #6c757d !important;
    }
}
