/* Styles extracted from libreville-urban-garden.html */

/* Base styles */
body  {
  
    font-family: "Open Sans", sans-serif;
  
    margin: 0;
  
    padding: 0;
  
    color: #333;
  
    line-height: 1.6
    }


h1, h2, h3, h4, h5, h6  {
  
    font-family: "Montserrat", sans-serif
    }


.container  {
  
    width: 100%;
  
    max-width: 1200px;
  
    margin: 0 auto;
  
    padding: 0 1rem
    }


/* Header styles */
header  {
  
    position: sticky;
  
    top: 0;
  
    z-index: 1000;
  
    display: flex;
  
    background-color: #2E7D32;
  
    color: white;
  
    padding: 1rem 0;
  
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
    }


.header-container  {
  
    display: flex;
  
    justify-content: space-between;
  
    align-items: center
    }


.logo  {
  
    display: flex;
  
    align-items: center;
  
    text-decoration: none;
  
    color: white
    }


.logo img  {
  
    width: 40px;
  
    height: 40px;
  
    margin-right: 10px
    }


.logo span  {
  
    font-size: 1.5rem;
  
    font-weight: bold
    }


nav ul  {
  
    display: flex;
  
    list-style: none;
  
    margin: 0;
  
    padding: 0
    }


nav ul li  {
  
    margin-left: 1.5rem
    }


nav ul li a  {
  
    color: white;
  
    text-decoration: none;
  
    transition: color 0.3s
    }


nav ul li a:hover  {
  
    color: #FFC107
    }


.mobile-menu-btn  {
  
    display: none;
  
    background: none;
  
    border: none;
  
    color: white;
  
    font-size: 1.5rem;
  
    cursor: pointer
    }


/* Breadcrumbs */
.breadcrumbs  {
  
    padding: 1rem 0;
  
    background-color: #f5f5f5
    }


.breadcrumbs ul  {
  
    list-style: none;
  
    padding: 0;
  
    margin: 0;
  
    display: flex;
  
    flex-wrap: wrap
    }


.breadcrumbs li  {
  
    display: flex;
  
    align-items: center
    }


.breadcrumbs li:not(:last-child)::after  {
  
    content: "/";
  
    margin: 0 0.5rem;
  
    color: #999
    }


.breadcrumbs a  {
  
    color: #2E7D32;
  
    text-decoration: none
    }


.breadcrumbs a:hover  {
  
    text-decoration: underline
    }


.breadcrumbs .current  {
  
    color: #666
    }


/* Hero section */
.hero-section  {
  
    position: relative;
  
    height: 500px;
  
    background-color: #333;
  
    color: white;
  
    overflow: hidden
    }


.hero-image  {
  
    position: absolute;
  
    top: 0;
  
    left: 0;
  
    width: 100%;
  
    height: 100%;
  
    object-fit: cover;
  
    opacity: 0.7
    }


.hero-content  {
  
    position: relative;
  
    z-index: 1;
  
    height: 100%;
  
    display: flex;
  
    flex-direction: column;
  
    justify-content: center;
  
    padding: 2rem
    }


.hero-content h1  {
  
    font-size: 3rem;
  
    margin-bottom: 1rem;
  
    max-width: 800px
    }


.hero-content p  {
  
    font-size: 1.25rem;
  
    max-width: 600px;
  
    margin-bottom: 2rem
    }


.btn  {
  
    display: inline-block;
  
    padding: 0.75rem 1.5rem;
  
    border-radius: 0.375rem;
  
    font-weight: 600;
  
    text-align: center;
  
    text-decoration: none;
  
    transition: all 0.3s ease;
  
    border: none;
  
    cursor: pointer;
  
    font-size: 1rem
    }


.btn-primary  {
  
    background-color: #2E7D32;
  
    color: white
    }


.btn-primary:hover  {
  
    background-color: #1B5E20
    }


.btn-outline  {
  
    background-color: transparent;
  
    color: #2E7D32;
  
    border: 2px solid #2E7D32
    }


.btn-outline:hover  {
  
    background-color: #e8f5e9
    }


.btn-white  {
  
    background-color: white;
  
    color: #2E7D32
    }


.btn-white:hover  {
  
    background-color: #f5f5f5
    }


/* Story overview section */
.overview-section  {
  
    padding: 4rem 0;
  
    background-color: white
    }


.overview-grid  {
  
    display: grid;
  
    grid-template-columns: 2fr 1fr;
  
    gap: 3rem;
  
    align-items: start
    }


.overview-content h2  {
  
    color: #2E7D32;
  
    font-size: 2rem;
  
    margin-top: 0;
  
    margin-bottom: 1.5rem
    }


.overview-content p  {
  
    margin-bottom: 1.5rem
    }


.overview-sidebar  {
  
    background-color: #f5f5f5;
  
    border-radius: 0.5rem;
  
    padding: 1.5rem
    }


.overview-sidebar h3  {
  
    color: #2E7D32;
  
    margin-top: 0;
  
    margin-bottom: 1rem;
  
    font-size: 1.25rem
    }


.overview-sidebar ul  {
  
    padding-left: 1.5rem;
  
    margin-bottom: 1.5rem
    }


.overview-sidebar li  {
  
    margin-bottom: 0.5rem
    }


.overview-sidebar .stat  {
  
    display: flex;
  
    align-items: center;
  
    margin-bottom: 1rem
    }


.overview-sidebar .stat-number  {
  
    font-size: 2.5rem;
  
    font-weight: bold;
  
    color: #2E7D32;
  
    margin-right: 1rem;
  
    line-height: 1
    }


.overview-sidebar .stat-label  {
  
    font-size: 1rem;
  
    color: #666
    }


/* Challenge section */
.challenge-section  {
  
    padding: 4rem 0;
  
    background-color: #f5f5f5
    }


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


.section-header h2  {
  
    color: #2E7D32;
  
    font-size: 2rem;
  
    margin-bottom: 1rem
    }


.section-header p  {
  
    color: #666;
  
    max-width: 800px;
  
    margin: 0 auto
    }


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


.challenge-card  {
  
    background-color: white;
  
    border-radius: 0.5rem;
  
    overflow: hidden;
  
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
    }


.challenge-card-content  {
  
    padding: 1.5rem
    }


.challenge-card-content h3  {
  
    color: #2E7D32;
  
    margin-top: 0;
  
    margin-bottom: 1rem;
  
    font-size: 1.25rem
    }


.challenge-card-content p  {
  
    color: #555;
  
    margin-bottom: 0
    }


/* Solution section */
.solution-section  {
  
    padding: 4rem 0;
  
    background-color: white
    }


.solution-grid  {
  
    display: grid;
  
    grid-template-columns: 1fr 1fr;
  
    gap: 3rem;
  
    align-items: center
    }


.solution-image  {
  
    border-radius: 0.5rem;
  
    overflow: hidden;
  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
    }


.solution-image img  {
  
    width: 100%;
  
    height: auto;
  
    display: block
    }


.solution-content h2  {
  
    color: #2E7D32;
  
    font-size: 2rem;
  
    margin-top: 0;
  
    margin-bottom: 1.5rem
    }


.solution-content p  {
  
    margin-bottom: 1.5rem
    }


.solution-steps  {
  
    margin-top: 2rem
    }


.solution-step  {
  
    display: flex;
  
    margin-bottom: 1.5rem
    }


.solution-step:last-child  {
  
    margin-bottom: 0
    }


.step-number  {
  
    display: flex;
  
    align-items: center;
  
    justify-content: center;
  
    width: 40px;
  
    height: 40px;
  
    background-color: #2E7D32;
  
    color: white;
  
    border-radius: 50%;
  
    font-weight: bold;
  
    margin-right: 1rem;
  
    flex-shrink: 0
    }


.step-content h3  {
  
    color: #2E7D32;
  
    margin-top: 0;
  
    margin-bottom: 0.5rem;
  
    font-size: 1.25rem
    }


.step-content p  {
  
    margin-bottom: 0
    }


/* Results section */
.results-section  {
  
    padding: 4rem 0;
  
    background-color: #e8f5e9
    }


.results-grid  {
  
    display: grid;
  
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  
    gap: 2rem;
  
    margin-bottom: 3rem
    }


.result-card  {
  
    background-color: white;
  
    border-radius: 0.5rem;
  
    padding: 2rem;
  
    text-align: center;
  
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
    }


.result-number  {
  
    font-size: 3rem;
  
    font-weight: bold;
  
    color: #2E7D32;
  
    margin-bottom: 1rem;
  
    line-height: 1
    }


.result-label  {
  
    font-size: 1.125rem;
  
    color: #555
    }


.results-content  {
  
    max-width: 800px;
  
    margin: 0 auto
    }


.results-content h3  {
  
    color: #2E7D32;
  
    font-size: 1.5rem;
  
    margin-bottom: 1rem
    }


.results-content p  {
  
    margin-bottom: 1.5rem
    }


/* Testimonials section */
.testimonials-section  {
  
    padding: 4rem 0;
  
    background-color: #f5f5f5
    }


.testimonials-container  {
  
    max-width: 800px;
  
    margin: 0 auto
    }


.testimonial  {
  
    background-color: white;
  
    border-radius: 0.5rem;
  
    padding: 2rem;
  
    margin-bottom: 2rem;
  
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
    }


.testimonial:last-child  {
  
    margin-bottom: 0
    }


.testimonial-content  {
  
    position: relative;
  
    padding: 0 2rem;
  
    margin-bottom: 1.5rem;
  
    font-style: italic;
  
    color: #555
    }


.testimonial-content::before, .testimonial-content::after  {
  
    content: "\"";
  
    position: absolute;
  
    font-size: 3rem;
  
    color: #e0e0e0;
  
    line-height: 1
    }


.testimonial-content::before  {
  
    left: 0;
  
    top: 0
    }


.testimonial-content::after  {
  
    right: 0;
  
    bottom: -1rem
    }


.testimonial-author  {
  
    display: flex;
  
    align-items: center
    }


.testimonial-author-image  {
  
    width: 60px;
  
    height: 60px;
  
    border-radius: 50%;
  
    overflow: hidden;
  
    margin-right: 1rem
    }


.testimonial-author-image img  {
  
    width: 100%;
  
    height: 100%;
  
    object-fit: cover
    }


.testimonial-author-info h4  {
  
    margin: 0;
  
    color: #333;
  
    font-size: 1.125rem
    }


.testimonial-author-info p  {
  
    margin: 0;
  
    color: #666;
  
    font-size: 0.875rem
    }


/* Lessons section */
.lessons-section  {
  
    padding: 4rem 0;
  
    background-color: white
    }


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


.lesson-card  {
  
    background-color: #f9f9f9;
  
    border-radius: 0.5rem;
  
    padding: 1.5rem;
  
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
    }


.lesson-card h3  {
  
    color: #2E7D32;
  
    margin-top: 0;
  
    margin-bottom: 1rem;
  
    font-size: 1.25rem
    }


.lesson-card p  {
  
    color: #555;
  
    margin-bottom: 0
    }


/* Gallery section */
.gallery-section  {
  
    padding: 4rem 0;
  
    background-color: #f5f5f5
    }


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


.gallery-item  {
  
    border-radius: 0.5rem;
  
    overflow: hidden;
  
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
    }


.gallery-item img  {
  
    width: 100%;
  
    height: 250px;
  
    object-fit: cover;
  
    display: block;
  
    transition: transform 0.3s ease
    }


.gallery-item:hover img  {
  
    transform: scale(1.05)
    }


/* CTA section */
.cta-section  {
  
    padding: 4rem 0;
  
    background-color: #2E7D32;
  
    color: white;
  
    text-align: center
    }


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


.cta-content h2  {
  
    font-size: 2rem;
  
    margin-bottom: 1.5rem
    }


.cta-content p  {
  
    margin-bottom: 2rem;
  
    font-size: 1.125rem
    }


.btn-outline-white  {
  
    background-color: transparent;
  
    color: white;
  
    border: 2px solid white
    }


.btn-outline-white:hover  {
  
    background-color: rgba(255, 255, 255, 0.1)
    }


/* Related stories section */
.related-section  {
  
    padding: 4rem 0;
  
    background-color: white
    }


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


.story-card  {
  
    border-radius: 0.5rem;
  
    overflow: hidden;
  
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  
    transition: transform 0.3s ease
    }


.story-card:hover  {
  
    transform: translatey(-5px)
    }


.story-image  {
  
    height: 200px;
  
    overflow: hidden
    }


.story-image img  {
  
    width: 100%;
  
    height: 100%;
  
    object-fit: cover;
  
    transition: transform 0.3s ease
    }


.story-card:hover .story-image img  {
  
    transform: scale(1.05)
    }


.story-content  {
  
    padding: 1.5rem;
  
    background-color: white
    }


.story-content h3  {
  
    color: #2E7D32;
  
    margin-top: 0;
  
    margin-bottom: 0.5rem;
  
    font-size: 1.25rem
    }


.story-content p  {
  
    color: #555;
  
    margin-bottom: 1.5rem
    }


/* Footer styles */
footer  {
  
    background-color: #2E7D32;
  
    color: white;
  
    padding: 4rem 0 2rem
    }


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


footer h4  {
  
    font-size: 1.25rem;
  
    margin-bottom: 1.25rem
    }


footer ul  {
  
    list-style: none;
  
    padding: 0;
  
    margin: 0
    }


footer ul li  {
  
    margin-bottom: 0.75rem
    }


footer ul li a  {
  
    color: #e0e0e0;
  
    text-decoration: none;
  
    transition: color 0.3s
    }


footer ul li a:hover  {
  
    color: #FFC107
    }


.footer-contact  {
  
    display: flex;
  
    align-items: center;
  
    margin-bottom: 1rem
    }


.footer-contact img  {
  
    width: 48px;
  
    height: 48px;
  
    margin-right: 1rem
    }


.footer-contact span  {
  
    font-size: 1.5rem;
  
    font-weight: bold
    }


.language-selector  {
  
    position: relative;
  
    margin-top: 1rem
    }


.language-selector select  {
  
    appearance: none;
  
    background-color: transparent;
  
    border: 1px solid rgba(255, 255, 255, 0.3);
  
    color: white;
  
    padding: 0.5rem 2rem 0.5rem 1rem;
  
    border-radius: 0.25rem;
  
    cursor: pointer;
  
    width: 100%
    }


.language-selector::after  {
  
    content: "";
  
    position: absolute;
  
    right: 1rem;
  
    top: 50%;
  
    transform: translatey(-50%);
  
    width: 0;
  
    height: 0;
  
    border-left: 5px solid transparent;
  
    border-right: 5px solid transparent;
  
    border-top: 5px solid white;
  
    pointer-events: none
    }


.footer-bottom  {
  
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  
    padding-top: 1.5rem;
  
    text-align: center;
  
    color: #e0e0e0
    }


/* Responsive styles */
@media (max-width: 768px)  {
  
    .header-container  {
  
        flex-wrap: wrap
        }


    .mobile-menu-btn  {
  
        display: block
        }


    nav  {
  
        flex-basis: 100%;
  
        display: none
        }


    nav.active  {
  
        display: block;
  
        margin-top: 1rem
        }


    nav ul  {
  
        flex-direction: column
        }


    nav ul li  {
  
        margin: 0.5rem 0
        }


    .hero-content h1  {
  
        font-size: 2.5rem
        }


    .overview-grid  {
  
        grid-template-columns: 1fr
        }


    .solution-grid  {
  
        grid-template-columns: 1fr
        }


    .solution-image  {
  
        order: -1
        }


    }