/* Tamarindus Project Page Styles - CSS for Asset Injection */
.banner h1 {
    font-size: 46px;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
     
     .banner h1 {
    font-size: 23px;
    /* margin-bottom: 1.5rem; */
    margin-top: 61px;
}
    }

/* AFF Brand Colors */
:root {
    --aff-primary-green: #2d5016;
    --aff-secondary-green: #4a7c59;
    --aff-accent-green: #6b8e23;
    --aff-gold: #b8860b;
    --aff-earth-brown: #8b4513;
    --aff-light-green: #90ee90;
    --aff-cream: #f5f5dc;
    --aff-dark-gray: #2c2c2c;
}

/* Main Container */
.aff-tamarindus-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
    color: var(--aff-dark-gray);
    background: #f5f5f5;
}

/* Hero Image */
.aff-hero-figure {
    width: 100%;
    margin: 0 0 40px 0;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.aff-hero-figure img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.aff-hero-figure:hover img {
    transform: scale(1.02);
}

.aff-hero-caption {
    background: linear-gradient(135deg, var(--aff-primary-green), var(--aff-secondary-green));
    color: white;
    padding: 15px 20px;
    font-size: 0.95em;
    font-style: italic;
    margin: 0;
}

/* Main Title */
.aff-main-title {
    color: var(--aff-primary-green);
    font-size: 1.8em;
    margin: 30px 0 20px 0;
    text-align: center;
    line-height: 1.3;
    position: relative;
}

.aff-main-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--aff-gold), var(--aff-accent-green));
    margin: 20px auto;
    border-radius: 2px;
}

/* Swahili Title */
.aff-swahili-title {
    color: var(--aff-secondary-green);
    font-size: 1.4em;
    text-align: center;
    margin: 20px 0 40px 0;
    font-style: italic;
    opacity: 0.9;
}

/* Section Headers */
.aff-section-header {
    color: var(--aff-primary-green);
    font-size: 1.8em;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--aff-accent-green);
    position: relative;
}

/* Background Table */
.aff-background-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.aff-background-table th {
    background: linear-gradient(135deg, var(--aff-primary-green), var(--aff-secondary-green));
    color: white;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    font-size: 1.1em;
}

.aff-background-table td {
    padding: 20px;
    border: 1px solid #e0e0e0;
    vertical-align: top;
}

.aff-background-table td p {
    margin-bottom: 15px;
}

.aff-background-table ol {
    padding-left: 20px;
}

.aff-background-table li {
    margin-bottom: 8px;
    color: var(--aff-dark-gray);
}

/* Team Section */
.aff-team-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid var(--aff-accent-green);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.aff-team-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Activities Table */
.aff-activities-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.aff-activities-table th {
    background: linear-gradient(135deg, var(--aff-primary-green), var(--aff-secondary-green));
    color: white;
    padding: 15px;
    font-weight: bold;
    text-align: left;
    font-size: 1em;
}

.aff-activities-table td {
    padding: 15px;
    border: 1px solid #e0e0e0;
    vertical-align: top;
}

.aff-activities-table tr:nth-child(even) {
    background-color: #F5F5F5;
}

.aff-activities-table tr:hover {
    background-color: rgba(107, 142, 35, 0.1);
    transition: background-color 0.3s ease;
}

/* Project Support */
.aff-project-support {
    background: #F5F5F5;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid var(--aff-primary-green);
    font-weight: bold;
    text-align: center;
}

/* Gallery Section */
.aff-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.aff-gallery-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 350px; /* Fixed height for all items */
}

.aff-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.aff-gallery-item img {
    width: 100%;
    height: 250px; /* Fixed height for all images */
    object-fit: cover;
    display: block;
}

.aff-gallery-caption {
    padding: 15px;
    background: var(--aff-primary-green);
    color: white;
    font-size: 0.9em;
    text-align: center;
    font-style: italic;
    height: 100px; /* Fixed height for captions */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .aff-tamarindus-content {
        padding: 20px 15px;
    }

    .aff-main-title {
        font-size: 1.6em;
    }

    .aff-swahili-title {
        font-size: 1.2em;
    }

    .aff-section-header {
        font-size: 1.5em;
    }

    .aff-background-table,
    .aff-activities-table {
        font-size: 0.9em;
    }

    .aff-background-table th,
    .aff-background-table td,
    .aff-activities-table th,
    .aff-activities-table td {
        padding: 12px 10px;
    }

    .aff-gallery {
        grid-template-columns: 1fr;
    }

    .aff-gallery-item {
        height: auto; /* Allow flexible height on mobile */
    }
    
    .aff-gallery-item img {
        height: 200px; /* Smaller image height on mobile */
    }
    
    .aff-gallery-caption {
        height: auto; /* Allow flexible caption height on mobile */
    }
}

@media (max-width: 480px) {
    .aff-main-title {
        font-size: 1.4em;
    }

    .aff-swahili-title {
        font-size: 1.1em;
    }

    .aff-background-table,
    .aff-activities-table {
        font-size: 0.85em;
    }

    .aff-section-header {
        font-size: 1.5em;
    }
}

/* Animation for content loading */
.aff-tamarindus-content > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.aff-tamarindus-content > *:nth-child(1) { animation-delay: 0.1s; }
.aff-tamarindus-content > *:nth-child(2) { animation-delay: 0.2s; }
.aff-tamarindus-content > *:nth-child(3) { animation-delay: 0.3s; }
.aff-tamarindus-content > *:nth-child(4) { animation-delay: 0.4s; }
.aff-tamarindus-content > *:nth-child(5) { animation-delay: 0.5s; }
.aff-tamarindus-content > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}