/* =========================================================================
   Reusable Components
   ========================================================================= */

/* Header and Navigation */
.site-header {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 20px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: #2e8b57;
    color: #fff;
    border: 2px solid #2e8b57;
}

.btn-primary:hover {
    background-color: #216a3f;
}

.btn-secondary {
    background-color: transparent;
    color: #2e8b57;
    border: 2px solid #2e8b57;
}

.btn-secondary:hover {
    background-color: #eaf6ee;
}

.btn-large {
    font-size: 1.2rem;
    padding: 15px 30px;
}

.btn-link {
    color: #2e8b57;
    text-decoration: underline;
    font-weight: 400;
}

/* Counters & Impact Sections */
.impact-counter-section {
    padding: 4rem 0;
    background-color: #eaf6ee;
    text-align: center;
}

.impact-counters {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.counter-item {
    flex: 1;
    max-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.counter-item .counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2e8b57;
    display: block;
}

/* Cards & Grids */
.destination-grid, .program-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.destination-card, .program-card, .dashboard-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.destination-card:hover, .program-card:hover {
    transform: translateY(-10px);
}

.destination-card img, .program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

/* Forms */
.login-form-container, .contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.login-form label, .contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.login-form input, .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form a, .signup-link a {
    color: #2e8b57;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.footer-col h4 {
    border-bottom: 2px solid #2e8b57;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.social-icons img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #555;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}



