* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 1.2em;
    background-color: #F4F3EE;
}

.header {
    background-color: #5C7457;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.drop {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.drop:hover {
    transform: scale(1.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: -50px;
}

.logo-img {
    height: 30px;
    margin-right: -10px;
    margin-top: -5px;
}

.logo-text-img, .footer-text-img {
    height: 50px;
    width: auto;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.menu-open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .bar:nth-child(2) {
    opacity: 0;
}

.menu-open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(244, 243, 238, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

.menu.active {
    display: flex;
}

.menu-content {
    text-align: left;
    width: 100%;
    padding-left: 50px;
}

.menu ul {
    list-style: none;
    padding-left: 0;
}

.menu ul li {
    margin: 3rem 0;
}

.menu ul li a {
    font-size: 40px;
    font-weight: 600;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    color: rgba(92, 116, 87, 1);
    text-decoration: none;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.menu ul li a:hover {
    color: #81523F;
    letter-spacing: 2px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: rgba(92, 116, 87, 1);
    cursor: pointer;
}

.hero {
    overflow: hidden;
    background-color: #5C7457;
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 40rem;
    margin-bottom: 1rem;
    border-bottom-left-radius: 50% 45%;
    border-bottom-right-radius: 50% 45%;
}

.title-image {
    width: 350px;
    height: auto;
}

.who-we-are {
    background-color: #F4F3EE;
    padding: 15rem 1rem;
    text-align: center;
}

.who-we-are-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.who-we-are-title {
    font-size: 5rem;
    font-weight: 900;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    color: #5C7457;
    margin-bottom: 1rem;
    text-align: center;
}

.mission-statement {
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    color: #5C7457;
    margin-top: 0;
    width: 100%;
    max-width: 600px;
    text-align: left;
}

.what-we-do {
    background-color: #5c7457;
    display: flex;
    margin-top: 100px;
    width: 100%;
    padding: 91px 39px 0;
    flex-direction: column;
    align-items: flex-start;
    color: #f4f3ee;
}

.what-we-do .section-title {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    margin-bottom: 1rem;
    color: #f4f3ee;
}

.what-we-do .section-content {
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    color: #f4f3ee;
    margin-top: 0;
    width: 100%;
    max-width: 800px;
    text-align: left;
}

.decorative-image-bottom {
    width: 150px;
    height: auto;
    object-fit: contain;
    object-position: center;
    align-self: flex-end;
    margin-top: -100px;
    margin-right: -50px;
    z-index: 10;
}

.text-content {
    max-width: 400px;
}

.title {
    font-size: 1.5rem;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.description {
    margin-top: 0.5rem;
}

@keyframes dropAnimation {
    0% {
        transform: translateY(-1000%);
    }
    100% {
        transform: translateY(0);
    }
}

.drop {
    width: 30px;
    height: auto;
    margin-top: 20rem;
    max-width: 100px;
    cursor: pointer;
    animation: dropAnimation 2s ease-in-out forwards;
}

.btn {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    margin-top: 1rem;
    background-color: #F4F3EE;
    color: #5c7457;
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.btn::after {
    content: '→';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease;
}

.btn:hover {
    background-color: #a8b9a5;
    color: rgba(255, 255, 255, 0.8);
}

.btn:hover::after {
    right: 5px;
}

.image-placeholder {
    width: 100%;
    height: 120px;
    background-color: #F4F3EE;
    margin-top: 1rem;
}

/* Plant overlap styles */
.plant-overlap {
    position: relative;
    z-index: 1;
    margin-top: -100px;
    margin-bottom: -50px;
    text-align: center;
}

.plant-image {
    position: absolute;
    width: 100px;
    height: auto;
}

.plant-top {
    top: -30px;
    left: 42rem;
    transform: translateX(-50%);
    z-index: 2;
}

.plant-bottom {
    bottom: -130px;
    left: 44rem;
    transform: translateX(-50%);
    z-index: 1;
}

.spacer {
    height: 10rem;
    background-color: #F4F3EE;
}

.footer {
    background-color: #F4F3EE;
    z-index: 10;
    color: #5C7457;
    padding: 3rem;
    position: relative;
}

/* Wave Animation */

@keyframes waveAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.custom-shape-divider-top-1741149855 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: flex;
    z-index: 0;
    pointer-events: none;
}

.custom-shape-divider-top-1741149855 svg {
    position: relative;
    display: block;
    width: 200%;
    height: 100px;
    flex-shrink: 0;
    animation: waveAnimation 10s linear infinite;
}

.custom-shape-divider-top-1741149855 .shape-fill {
    fill: #5C7457;
}

/* Goals Section */

.goals-section {
    border-bottom-right-radius: 50% 45%;
    border-bottom-left-radius: 50% 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    position: relative;
    padding-top: 100px;
    background-color: #F4F3EE;
}

.goal-cards-container {
    display: flex;
    flex-wrap: wrap;
}

.goal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 101px;
    margin-top: 50px;
    color: rgb(92, 116, 87);
}

.goals-section .section-title {
    color: #5C7457;
}

.goal-icon {
    width: 70px;
}

.goal-title {
    margin-top: 49px;
    font-weight: 500;
    font-size: 25px;
    line-height: 1px;
    text-align: center;
}

/* Services Details */

.services-details {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.services-icon {
    aspect-ratio: 0.61;
    width: 45px;
    object-fit: contain;
}

.services-content {
    background-color: rgb(92, 116, 87);
    border: 1px solid rgb(92, 116, 87);
    margin-top: 24px;
    width: 100%;
    padding: 28px 39px 156px;
    color: rgb(244, 243, 238);
}

.services-subtitle {
    color: rgb(244, 243, 238);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.services-title {
    font-size: 36px;
    font-weight: 550;
    margin-top: 100px;
    margin-bottom: 40px;
}

.subjects-list {
    list-style: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 40px;
    margin-top: 40px;
    font-weight: 400;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    margin: 0 auto;
}

.subjects-list li {
    transition: color 0.3s ease;
    white-space: nowrap;
}

.subjects-list li:hover {
    color: #ef7b4562;
}

/* Contact Footer */

.contact-footer {
    margin-top: 87px;
    padding: 0 36px;
    text-align: center;
}

.contact-title {
    color: #5C7457;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 27px;
}

.social-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    object-position: center;
}

.social-icon:last-child {
    width: 40px;
    height: 40px;
}

.copyright {
    color: #000;
    font-size: 10px;
    font-weight: 300;
    text-align: center;
    margin-top: 171px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
}

.footer-column {
    text-align: left;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #5C7457;
}

/* Footer Bottom */

.footer-column a {
    display: block;
    color: #5C7457;
    text-decoration: none;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #EF7B45;
}

.footer-bottom {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem;
    }

    .plant-overlap {
        margin-top: -50px;
        margin-bottom: -30px;
    }

    .plant-image {
        width: 80px;
    }

    .plant-top {
        top: -5px;
        left: 180px;
        transform: translateX(-50%);
    }

    .plant-bottom {
        bottom: -120px;
        left: 210px;
        transform: translateX(-50%);
    }

    .who-we-are-title {
        text-align: left;
        font-size: 2.5rem;
    }

    .what-we-do {
        padding: 50px 20px 0;
    }

    .who-we-are-content {
        align-items: flex-start;
        padding-left: 1rem;
    }

    .what-we-do .section-title {
        font-size: 2.5rem;
    }

    .what-we-do .section-content {
        font-size: 0.9rem;
        line-height: 1.5rem;
        animation: slideLeftToRight 10s linear infinite;
    }

    .decorative-image-bottom {
        width: 100px;
        margin-top: 50px;
        margin-right: 10px;
    }

    .logo-img {
        height: 25px;
    }

    .menu-icon {
        width: 25px;
        height: 25px;
    }

    .bar {
        width: 20px;
        height: 2px;
    }

    .menu ul li a {
        font-size: 1rem;
        font-weight: 550;
    }

    .hero {
        padding: 1rem;
        height: 30rem;
        border-bottom-left-radius: 50% 20%;
        border-bottom-right-radius: 50% 20%;
    }

    .drop {
        margin-top: 18rem;
    }

    .title {
        font-size: 1.2rem;
    }

    .title-image {
        width: 250px;
    }

    .description {
        font-size: 0.8rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem 0.5rem 1rem;
    }

    .btn::after {
        right: 8px;
    }

    .btn:hover {
        background-color: #F4F3EE;
        color: #5c7457;
    }

    .btn:active {
        background-color: #a8b9a5;
        color: rgba(255, 255, 255, 0.8);
    }

    .image-placeholder {
        height: 100px;
    }

    .goal-card {
        margin-bottom: 50px;
        margin-top: 30px;
    }

    .goal-icon {
        width: 50px;
    }

    .goal-title {
        font-size: 18px;
        margin-top: 20px;
        line-height: 1.2;
    }

    .services-details {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    .services-content {
        text-align: left;
    }

    .subjects-list {
        text-align: left;
        align-items: flex-start;
        margin: 0;
    }

    .spacer {
        height: 5rem;
    }

    .footer-container {
        padding: 10px;
    }

    .footer-brand {
        margin-bottom: 0.5rem;
    }

    .footer-links {
        gap: 0.5rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .social-icons img {
        width: 18px;
        height: 18px;
    }

    .contact-title {
        font-size: 24px;
    }
}