/* Styles extracted from school-garden-design.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
    }


/* Hero section */
.hero  {
  
    background-color: #4CAF50;
  
    color: white;
  
    padding: 4rem 0;
  
    position: relative;
  
    overflow: hidden;
  
    background-image: linear-gradient(rgba(46, 125, 50, 0.85), rgba(46, 125, 50, 0.85)), url(/images/school-garden-hero-bg.jpg);
  
    background-size: cover;
  
    background-position: center
    }


.hero-content  {
  
    max-width: 700px;
  
    position: relative;
  
    z-index: 1
    }


.hero h1  {
  
    font-size: 2.5rem;
  
    margin-bottom: 1rem
    }


.hero p  {
  
    font-size: 1.2rem;
  
    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
    }


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


.btn-primary:hover  {
  
    background-color: #F4511E
    }


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


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


/* 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
    }


/* Course details section */
.course-section  {
  
    padding: 4rem 0
    }


.course-grid  {
  
    display: grid;
  
    grid-template-columns: 2fr 1fr;
  
    gap: 2rem
    }


@media (max-width: 768px)  {
  
    .course-grid  {
  
        grid-template-columns: 1fr
        }


    }


.course-content h2  {
  
    color: #2E7D32;
  
    margin-bottom: 1.5rem
    }


.course-content h3  {
  
    color: #2E7D32;
  
    margin-top: 2rem;
  
    margin-bottom: 1rem
    }


.course-meta  {
  
    background-color: #f5f5f5;
  
    padding: 2rem;
  
    border-radius: 0.5rem;
  
    position: sticky;
  
    top: 2rem
    }


.course-meta h3  {
  
    color: #2E7D32;
  
    margin-top: 0;
  
    margin-bottom: 1.5rem
    }


.meta-item  {
  
    margin-bottom: 1.5rem
    }


.meta-item:last-child  {
  
    margin-bottom: 0
    }


.meta-item h4  {
  
    margin-top: 0;
  
    margin-bottom: 0.5rem;
  
    font-size: 1rem
    }


.meta-item p  {
  
    margin: 0
    }


.price  {
  
    font-size: 1.5rem;
  
    font-weight: bold;
  
    color: #2E7D32;
  
    margin-bottom: 1rem
    }


.price .original  {
  
    text-decoration: line-through;
  
    color: #999;
  
    font-size: 1.25rem;
  
    margin-right: 0.5rem
    }


.enrollment-box  {
  
    background-color: #e8f5e9;
  
    padding: 2rem;
  
    border-radius: 0.5rem;
  
    margin-top: 2rem;
  
    text-align: center
    }


.enrollment-box h3  {
  
    margin-top: 0
    }


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


.curriculum-section h2  {
  
    color: #2E7D32;
  
    margin-bottom: 2rem;
  
    text-align: center
    }


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


.module-header  {
  
    background-color: #e8f5e9;
  
    padding: 1.25rem 1.5rem;
  
    cursor: pointer;
  
    display: flex;
  
    justify-content: space-between;
  
    align-items: center
    }


.module-header h3  {
  
    margin: 0;
  
    color: #2E7D32;
  
    font-size: 1.25rem
    }


.module-content  {
  
    padding: 1.5rem;
  
    border-top: 1px solid #e0e0e0
    }


.lesson-list  {
  
    list-style: none;
  
    padding: 0;
  
    margin: 0
    }


.lesson-item  {
  
    padding: 0.75rem 0;
  
    border-bottom: 1px solid #f0f0f0;
  
    display: flex;
  
    align-items: center
    }


.lesson-item:last-child  {
  
    border-bottom: none
    }


.lesson-icon  {
  
    margin-right: 1rem;
  
    color: #2E7D32
    }


.lesson-time  {
  
    margin-left: auto;
  
    color: #757575;
  
    font-size: 0.875rem
    }


/* Instructor section */
.instructor-section  {
  
    padding: 4rem 0
    }


.instructor-section h2  {
  
    color: #2E7D32;
  
    margin-bottom: 2rem;
  
    text-align: center
    }


.instructor-card  {
  
    display: flex;
  
    align-items: flex-start;
  
    background-color: #f5f5f5;
  
    border-radius: 0.5rem;
  
    padding: 2rem
    }


.instructor-image  {
  
    width: 120px;
  
    height: 120px;
  
    border-radius: 50%;
  
    object-fit: cover;
  
    margin-right: 2rem
    }


.instructor-info h3  {
  
    color: #2E7D32;
  
    margin-top: 0;
  
    margin-bottom: 0.5rem
    }


.instructor-title  {
  
    color: #757575;
  
    margin-bottom: 1rem
    }


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


.reviews-section h2  {
  
    color: #2E7D32;
  
    margin-bottom: 2rem;
  
    text-align: center
    }


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


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


.review-header  {
  
    display: flex;
  
    align-items: center;
  
    margin-bottom: 1rem
    }


.reviewer-image  {
  
    width: 50px;
  
    height: 50px;
  
    border-radius: 50%;
  
    object-fit: cover;
  
    margin-right: 1rem
    }


.reviewer-info h4  {
  
    margin: 0;
  
    font-size: 1rem
    }


.review-date  {
  
    color: #757575;
  
    font-size: 0.875rem
    }


.review-stars  {
  
    color: #FFC107;
  
    margin-bottom: 0.5rem
    }


/* Related courses section */
.related-section  {
  
    padding: 4rem 0
    }


.related-section h2  {
  
    color: #2E7D32;
  
    margin-bottom: 2rem;
  
    text-align: center
    }


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


.course-card  {
  
    background-color: white;
  
    border-radius: 0.5rem;
  
    overflow: hidden;
  
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
    display: flex;
  
    flex-direction: column;
  
    transition: transform 0.3s ease
    }


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


.course-card-image  {
  
    width: 100%;
  
    height: 180px;
  
    object-fit: cover
    }


.course-card-content  {
  
    padding: 1.5rem;
  
    flex-grow: 1;
  
    display: flex;
  
    flex-direction: column
    }


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


.course-card-meta  {
  
    margin-bottom: 1rem;
  
    font-size: 0.875rem;
  
    color: #666
    }


.course-card-meta span  {
  
    display: inline-block;
  
    margin-right: 1rem
    }


.course-card-price  {
  
    color: #2E7D32;
  
    font-weight: bold;
  
    margin-top: auto;
  
    margin-bottom: 1rem
    }


.course-card-footer  {
  
    margin-top: auto
    }


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


.faq-section h2  {
  
    color: #2E7D32;
  
    margin-bottom: 2rem;
  
    text-align: center
    }


.faq-item  {
  
    background-color: white;
  
    border-radius: 0.5rem;
  
    margin-bottom: 1rem;
  
    overflow: hidden;
  
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
    }


.faq-question  {
  
    padding: 1.25rem 1.5rem;
  
    cursor: pointer;
  
    display: flex;
  
    justify-content: space-between;
  
    align-items: center;
  
    font-weight: 600
    }


.faq-answer  {
  
    padding: 0 1.5rem 1.25rem;
  
    border-top: 1px solid #f0f0f0
    }


/* 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 h1  {
  
        font-size: 2rem
        }


    .instructor-card  {
  
        flex-direction: column;
  
        align-items: center;
  
        text-align: center
        }


    .instructor-image  {
  
        margin-right: 0;
  
        margin-bottom: 1.5rem
        }


    }