/* Global Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

h1, h2, h3 {
    color: #014421;
    font-weight: bold;
}

.section-title {
    border-bottom: 2px solid #006400;
    padding-bottom: .5rem;
    margin-bottom: 1rem;
}

/* Layout Containers */
.content-box {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Bilingual Layout */
.bilingual {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    flex-direction: column;
}

@media (min-width: 768px) {
    .bilingual {
        flex-direction: row;
    }
}

.lang-block {
    flex: 1 1 45%;
}

/* Video Styling */
iframe {
    width: 100%;
    height: 315px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

/* Navbar */
.navbar {
    background-color: #014421;
    color: #f8f9f4;
}

.navbar .nav-link,
.navbar .navbar-brand {
    color: #f8f9f4 !important;
}

.navbar .nav-link:hover {
    text-decoration: underline;
}

.navbar-toggler-icon {
    filter: invert(100%);
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: #014421;
    color: #f8f9f4;
}

footer a {
    color: #f8f9f4;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Hero Slider */
.carousel-caption {
    background: rgba(1, 68, 33, 0.6); /* semi-transparent forest green */
    padding: 1rem 2rem;
    border-radius: 10px;
}

.carousel-caption h1 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
}

.carousel-caption p {
    color: #f8f9f4;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
}

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

.text-light a {
    color: #f8f9f4;
}

.text-light a:hover {
    color: #ffffff;
}

.card {
    width: 340px;
    margin: 10px auto;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.card-img-top {
    object-fit: cover;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 20px auto;
    transition: transform 0.3s ease;
}

.card-img-top:hover {
    transform: scale(1.05);
}

.card-body {
    text-align: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.navbar-brand {
    padding-left: 5px;
}

