:root {
    --primary-color: #2e7d32;
    --secondary-color: #f57c00;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Header & Nav */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
}

.logo span { color: var(--primary-color); }

.nav-links .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    margin-left: 15px;
}

.nav-links .nav-link.active {
    color: var(--primary-color) !important;
}

/* Full Screen Hero Slider */
.hero-slider-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#heroCarousel, .carousel-inner, .carousel-item {
    height: 100%;
}

.carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 3s ease-in-out, opacity 1s ease-in-out;
}

/* Ken Burns Zoom Effect */
.carousel-item.active {
    transform: scale(1.1);
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    z-index: 2;
}

.hero-content {
    color: var(--white);
    max-width: 900px;
}

.hero-content h1 span {
    color: var(--secondary-color);
}

/* Buttons */
.btn-primary { background-color: var(--primary-color); border: none; }
.btn-primary:hover { background-color: #1b5e20; }
.btn-secondary { background-color: var(--secondary-color); border: none; color: white; }

/* Program Cards */
.program-card {
    background: #f8f9fa;
    padding: 30px;
    border-top: 4px solid var(--primary-color);
    border-radius: 8px;
    transition: 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.program-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Text Links */
.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.text-link:hover {
    text-decoration: underline;
}

/* Footer Tweak */
footer a:hover {
    color: var(--secondary-color) !important;
}

/* About Page Specifics */
.inner-page-header {
    background: #222; /* Static dark background for inner pages */
    position: relative;
}

.page-title-section {
    background: linear-gradient(rgba(46, 125, 50, 0.85), rgba(0, 0, 0, 0.7)), url('../images/about-header.jpg') center/cover;
    height: 300px;
    margin-bottom: 50px;
}

.color-primary {
    color: var(--primary-color);
}

.approach-item {
    padding: 20px;
    border-left: 3px solid var(--secondary-color);
    background: #fdfdfd;
}

.approach-item h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.bg-success {
    background-color: var(--primary-color) !important;
}