/* Custom styles for LWOSO website */

/* Hero carousel */
.hero-carousel .carousel-item {
    height: 500px;
}

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

.hero-carousel .carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 20px 30px;
    bottom: 50px;
}

@media (max-width: 768px) {
    .hero-carousel .carousel-item {
        height: 350px;
    }

    .hero-carousel .carousel-caption h2 {
        font-size: 1.25rem;
    }

    .hero-carousel .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* Project cards */
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.project-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Page headers */
.page-header {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-weight: 700;
}

/* Image galleries */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* Content sections */
.content-section {
    padding: 2rem 0;
}

/* Highlight boxes */
.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #198754;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

/* Call to action */
.cta-section {
    background: linear-gradient(135deg, #ffc107 0%, #ffca2c 100%);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Contact info box */
.contact-box {
    background: #e8f5e9;
    border: 2px solid #198754;
    border-radius: 10px;
    padding: 1.5rem;
}

/* Donate button styling */
.donate-btn {
    transition: transform 0.2s ease;
}

.donate-btn:hover {
    transform: scale(1.05);
}

/* Stats/numbers */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #198754;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
}

/* Navbar tweaks */
.navbar-dark .nav-link.active {
    font-weight: 600;
}

.dropdown-item.active {
    background-color: #198754;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better image borders */
.img-bordered {
    border: 3px solid #198754;
    border-radius: 8px;
}
