/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-divider {
    height: 3px;
    width: 60px;
    background-color: #3BB78F;
    margin: 0 auto 30px;
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #3BB78F;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
	z-index: 1; 
}

.hero-section .container {
    position: relative;
    z-index: 2;
	
}

body {
    background-color: #ffffff; /* Or any light color you prefer */
}

/* Check if background images are loading */
.hero-section {
    background-image: url('../images/forest-canopy.jpg'); /* Update with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    color: #ffffff;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-section .btn-primary {
    background-color: #3BB78F;
    border-color: #3BB78F;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #2d8b6b;
    border-color: #2d8b6b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* About Section */
#about ul {
    margin-bottom: 20px;
}

#about li {
    margin-bottom: 10px;
}

#about h3 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Methodology Section */
.methodology-card {
            transition: all 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        .methodology-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .method-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #3BB78F;
        }
        .methodology-card .card-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        .step-number {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            background-color: #3BB78F;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        }
        .section-title {
            position: relative;
            display: inline-block;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0;
        }
        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3BB78F, #0BAB64);
            margin: 15px auto 30px;
            border-radius: 2px;
        }
        .connecting-line {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: rgba(59, 183, 143, 0.2);
            z-index: 0;
        }
        .sequential-container {
            position: relative;
        }
        .methodology-description {
            max-width: 700px;
            margin: 0 auto 50px;
            text-align: center;
            color: #555;
        }
        .image-container {
            height: 180px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .methodology-card:hover .image-container img {
            transform: scale(1.1);
    }

/* Analysis Section */
.finding-item {
    margin-bottom: 30px;
}

.finding-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.finding-item i {
    color: #3BB78F;
    margin-right: 10px;
}

.chart-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Map Section */
.map-container {
    height: 500px;
    width: 100%;
    border-radius: 8px;
}

/* Section styling */
.section-title {
    color: #2c3e50;
    font-weight: 700;
}

.section-divider {
    height: 3px;
    width: 60px;
    background-color: #27ae60;
    margin: 20px auto;
}

/* Controls card styling */
.map-controls, .map-legend {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-controls .card-body, .map-legend .card-body {
    padding: 1.25rem;
}

.map-controls h4, .map-legend h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Form controls styling */
.form-select, .form-check-input {
    cursor: pointer;
}

.form-select:focus, .form-check-input:focus {
    border-color: #27ae60;
    box-shadow: 0 0 0 0.25rem rgba(39, 174, 96, 0.25);
}

.btn-primary {
    background-color: #27ae60;
    border-color: #27ae60;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #219653;
    border-color: #219653;
}

/* Legend styling */
#mapLegend i {
    border-radius: 3px;
}

/* Map popup styling */
.leaflet-popup-content h5 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.leaflet-popup-content p {
    margin-bottom: 5px;
    color: #34495e;
}

/* Team Section */
.team-member {
    margin-bottom: 30px;
}

.member-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.member-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.social-icons {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background-color: rgba(59, 183, 143, 0.8);
    padding: 10px 0;
    transition: all 0.3s ease;
    text-align: center;
}

.member-img:hover .social-icons {
    bottom: 0;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #2c3e50;
}

.member-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.member-info .role {
    color: #3BB78F;
    font-weight: 600;
    margin-bottom: 10px;
}

.member-info .bio {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
}

.footer h4 {
    margin-bottom: 10px;
}

.footer p {
    margin-bottom: 0;
}

.btn-social {
    height: 40px;
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.btn-social:hover {
    transform: translateY(-5px);
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .map-container {
        height: 400px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}