/* ================================================================
   DDO SOMALIA ABOUT PAGE - ADDITIONAL STYLES
   ================================================================ */

/* =========================
   TOP HEADER - ABOUT PAGE
========================= */

.top-header-about {
    background: #12961C;
    color: white;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    font-size: 0.9rem;
}

.top-header-about .top-header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.top-header-about .header-contact {
    display: flex;
    gap: 2rem;
}

.top-header-about .header-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.top-header-about .header-contact a:hover {
    color: #24B15E;
}

.top-header-about .header-contact i {
    font-size: 0.85rem;
}

.top-header-about .header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-header-about .location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-header-about .location i {
    font-size: 0.85rem;
}

.top-header-about .language-switch select {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-header-about .language-switch select:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.top-header-about .language-switch select option {
    background: #000;
    color: white;
}

/* =========================
   NAVBAR - ABOUT PAGE
========================= */

.navbar-about {
    position: fixed;
    top: 3rem;
    width: 100%;
    z-index: 1000;
    background: white;
    padding: 0.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.navbar-about.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container-about {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    gap: 2rem;
}

.nav-container-about .logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-container-about .logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.nav-menu-about {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu-about a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu-about a:hover,
.nav-menu-about a.active {
    color: #24B15E;
}

.donate-btn-about {
    background: #12961C;
    color: white;
    padding: 0.85rem 2.5rem;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.donate-btn-about:hover {
    background: #24B15E;
}

.mobile-menu-toggle-about {
    display: none;
    background: #12961C;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
}

/* Page offset for fixed header */
body {
    padding-top: 8rem;
}

/* =========================
   ABOUT PAGE SECTIONS
========================= */

.about-page {
    width: 100%;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(5, 6, 5, 0.9) 0%, rgba(5, 194, 33, 0.8) 70%, transparent 100%), 
                url('../images/ddo-bg-007.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: -8rem;
    padding-top: 8rem;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 150, 28, 0.1);
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    color: white;
    text-align: left;
    padding: 3rem 2rem;
}

.about-hero-label {
    font-size: 0.9rem;
    color: #24B15E;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-out;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.1rem;
    margin-bottom: 0;
    animation: fadeIn 1s ease-out 0.3s both;
    line-height: 1.6;
}

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

/* Story Section */
.about-story {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.story-header {
    text-align: center;
    margin-bottom: 3rem;
}

.story-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #000;
}

.story-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-item {
    background: white;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.story-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.story-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #12961C 0%, #24B15E 100%);
    background-size: cover;
    background-position: center;
}

.story-content {
    padding: 2rem;
}

.story-year {
    display: inline-block;
    background: linear-gradient(135deg, #12961C 0%, #24B15E 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content .story-year {
    display: inline-block;
}

.story-item p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Mission, Vision, Values Section */
.about-mvv {
    padding: 5rem 2rem;
    background: white;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.mvv-card {
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.mission-card {
    background: linear-gradient(135deg, #f0f8f5 0%, #e8f5f0 100%);
    border-left: 5px solid #12961C;
}

.mission-card .mvv-icon {
    background: rgba(18, 150, 28, 0.1);
    color: #12961C;
}

.vision-card {
    background: linear-gradient(135deg, #f0f8f5 0%, #e8f5f0 100%);
    border-left: 5px solid #12961C;
}

.vision-card .mvv-icon {
    background: rgba(18, 150, 28, 0.1);
    color: #12961C;
}

.values-card {
    background: linear-gradient(135deg, #f0f8f5 0%, #e8f5f0 100%);
    border-left: 5px solid #12961C;
}

.values-card .mvv-icon {
    background: rgba(18, 150, 28, 0.1);
    color: #12961C;
}

.mvv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.mvv-card p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    padding: 0.75rem 0;
    color: #555;
    line-height: 1.6;
}

.values-list strong {
    color: #12961C;
}

/* Focus Areas Section */
.about-focus-areas {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.focus-header {
    text-align: center;
    margin-bottom: 3rem;
}

.focus-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #000;
}

.focus-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.focus-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
}

.focus-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    flex: 0 0 auto;
    min-width: 100%;
    overflow: hidden;
}

.focus-card.slider-card {
    min-width: 200px;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.focus-image {
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, #12961C 0%, #24B15E 100%);
    background-size: cover;
    background-position: center;
}

.focus-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.focus-icon {
    display: none;
}

.focus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.focus-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.focus-stats {
    display: inline-block;
    background: linear-gradient(135deg, #f0f8f5 0%, #e8f5f0 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    color: #12961C;
    font-size: 0.9rem;
}

.focus-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.focus-nav-btn {
    background: #12961C;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.focus-nav-btn:hover {
    background: #24B15E;
    transform: scale(1.1);
}

/* Approach Section */
.about-approach {
    padding: 5rem 2rem;
    background: white;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.approach-header {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #000;
}

.approach-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.approach-item {
    position: relative;
    padding: 2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    transition: all 0.3s ease;
}

.approach-item:hover {
    background: linear-gradient(135deg, #f0f8f5 0%, #e8f5f0 100%);
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: #12961C;
    opacity: 1;
    margin-bottom: 1rem;
}

.approach-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
}

.approach-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Small Contact CTA Section */
.about-small-contact-cta {
    padding: 2rem 2rem;
    background: linear-gradient(135deg, rgba(18, 150, 28, 0.9) 0%, rgba(6, 20, 12, 0.85) 100%), 
                url('../images/ddo-bg-002.jpeg') center/cover no-repeat fixed;
    text-align: left;
    color: white;
}

.contact-cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-box h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-cta-box p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-cta-box .btn {
    display: inline-block;
    margin: 0 1rem;
}

.contact-detail {
    color: #666;
    font-size: 0.9rem !important;
}

/* Stats Section */
.about-stats {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(18, 150, 28, 0.9) 0%, rgba(6, 20, 12, 0.9) 100%), 
                url('../images/ddo-bg-008.jpeg') center/cover no-repeat fixed;
    color: white;
    margin-top: 3rem;
    margin-bottom: 0rem;
}

.about-stats h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: white;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* Team Section */
.about-team {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #000;
}

.team-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.member-image {
    font-size: 4rem;
    color: #12961C;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #f0f8f5;
    border: 4px solid #12961C;
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.member-role {
    color: #12961C;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.member-contact {
    color: #12961C;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0.75rem 0 0 0;
}

.member-contact a {
    color: #12961C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.member-contact a:hover {
    color: #24B15E;
    text-decoration: underline;
}

.member-name {
    color: #12961C;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0.5rem 0 0 0;
}

.member-contact {
    color: #555;
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.member-contact a {
    color: #12961C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.member-contact a:hover {
    color: #24B15E;
    text-decoration: underline;
}

/* Partnerships Section */
.about-partnerships {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

.about-partnerships h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.about-partnerships p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: scale(1.05);
}

.partner-logo {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

/* CTA Section */
.about-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(18, 150, 28, 0.85) 0%, rgba(36, 177, 94, 0.85) 100%), 
                url('../images/cta-bg.jpg') center/cover no-repeat fixed;
    color: white;
    text-align: center;
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 150, 28, 0.4);
    z-index: 0;
}

.about-cta > * {
    position: relative;
    z-index: 1;
}

.about-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: #12961C;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: #f0f8f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: white;
    color: #12961C;
    transform: translateY(-3px);
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width: 768px) {
    .top-header-about {
        padding: 0.75rem 1rem;
    }

    .top-header-about .top-header-container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .top-header-about .header-contact {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
        align-items: center;
    }

    .top-header-about .header-right {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: center;
    }

    .top-header-about .location {
        font-size: 0.8rem;
    }

    .top-header-about .language-switch select {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }

    .nav-container-about {
        flex-wrap: wrap;
        padding: 0.5rem 1rem;
        height: auto;
        gap: 0.5rem;
    }

    .nav-container-about .logo-container {
        order: 1;
    }

    .nav-container-about .logo {
        width: 50px;
        height: 50px;
    }

    .mobile-menu-toggle-about {
        display: block;
        order: 2;
        margin-left: auto;
    }

    .donate-btn-about {
        order: 3;
        flex-basis: 100%;
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .nav-menu-about {
        display: none;
        order: 4;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-menu-about.active {
        display: flex;
    }

    .about-hero {
        min-height: 50vh;
        background-attachment: scroll;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .story-header h2,
    .focus-header h2,
    .approach-header h2,
    .about-stats h2,
    .team-header h2,
    .about-partnerships h2,
    .about-cta h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-hero-content {
        padding: 2rem 1rem;
    }

    .about-story,
    .about-mvv,
    .about-focus-areas,
    .about-approach,
    .about-stats,
    .about-org-contact,
    .about-team,
    .about-partnerships,
    .about-cta {
        padding: 3rem 1rem;
    }

    .focus-grid,
    .approach-grid,
    .stats-showcase,
    .org-contact-grid,
    .team-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-item {
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .story-image {
        height: 250px;
    }

    .story-content {
        padding: 2.5rem 2rem;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .mvv-card,
    .focus-card,
    .approach-item,
    .team-member {
        padding: 1.5rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.5rem;
    }

    .about-hero-label {
        font-size: 0.8rem;
    }

    .story-year,
    .focus-stats {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .approach-number {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .mvv-card h3,
    .focus-card h3,
    .team-member h4 {
        font-size: 1.2rem;
    }

    .about-container {
        padding: 0 1rem;
    }
}
