* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
/* MONKE SECTION */
.main {
    display: flex;
    flex-direction: column;
}
.monke {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        radial-gradient(
            circle at center,
            #687944 0%,
            #536432 45%,
            #46552b 100%
        );
    color: white;
}
.wisdom-content {
    width: min(900px, 90%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.wisdom-quote {
    margin-bottom: 10px;
}
.wisdom-quote h1 {
    margin: 0;
    font-size: 32px;
    letter-spacing: 4px;
    font-weight: 700;
}
.wisdom-quote p {
    margin: 8px 0 0;
    font-size: 15px;
    letter-spacing: 2px;
    opacity: 0.7;
    font-style: italic;
}
.monkey-container {
    position: relative;
    width: 500px;
    max-width: 90vw;
    display: flex;
    justify-content: center;
}

.monkey-container img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: contain;
}
#monkey-image {
    transition: 1s ease-out;
}
#monkey-image:hover {
    scale: 1.05;
}

.monkey-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(190, 200, 130, 0.18);
    filter: blur(70px);
    z-index: 1;
}
.thought-button {
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.thought-button span {
    margin-left: 8px;
}

.thought-button:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}
.js-animation {
    width: 100%;
    text-align: center;
    font-size: 32px;
    height: 64px;
}
.daily-thought {
    width: min(600px, 90%);
    margin-top: 10px;
    padding: 24px 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.daily-thought p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}
/* SECTION TRANSITION */

.section-transition {
    height: 110px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        to bottom,
        #46552b 0%,
        #46552b 35%,
        #46552b 65%,
        #3d4a26 100%
    );
    color: rgba(255, 255, 255, 0.55);
    overflow: hidden;
}

.section-transition span {
    position: relative;
    z-index: 2;
    padding: 0 22px;
    background: transparent;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 600;
}

/* LEFT + RIGHT LINES */

.section-transition::before,
.section-transition::after {
    content: "";
    position: absolute;
    top: 50%;
    width: min(220px, 25vw);
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2)
    );
}

.section-transition::before {
    right: calc(50% + 80px);
}

.section-transition::after {
    left: calc(50% + 80px);
    transform: rotate(180deg);
}


/* NEWSLETTER */

.form {
    min-height: 360px;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    background:
        linear-gradient(
            180deg,
            #46552b 0%,
            #3d4a26 100%
        );

    color: white;
    text-align: center;
}

.form::before {
    content: "A LITTLE WISDOM, SOMETIMES";
    margin-bottom: 5px;
    font-size: 12px;
    letter-spacing: 4px;
    opacity: 0.5;
}

.newsletter-form {
    display: flex;
    width: min(600px, 90%);
    justify-content: center;
    gap: 10px;
}

#email {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;

    background: rgba(0, 0, 0, 0.15);
    color: white;

    outline: none;
    font-size: 15px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

#email::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#email:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.22);
}

#submit {
    padding: 14px 22px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.1);
    color: white;

    font-size: 14px;
    letter-spacing: 0.5px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

#submit:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
}

#confirmation {
    min-height: 20px;
    font-size: 14px;
    opacity: 0.7;
}


/* ABOUT */

.about {
    padding: 120px 20px;
    background: #f1f0e8;
    color: #25291b;
}

.about-container {
    width: min(850px, 90%);
    margin: 0 auto;
}

.about-label {
    margin-bottom: 15px;

    font-size: 12px;
    letter-spacing: 4px;
    color: #687944;
    font-weight: 700;
}

.about h2 {
    margin-bottom: 45px;

    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    font-weight: 700;
}

.article {
    max-width: 700px;
}

.article p {
    margin-bottom: 25px;

    font-size: 17px;
    line-height: 1.8;
    color: #444838;
}

.about-ending {
    margin-top: 45px;
    color: #687944 !important;
    font-style: italic;
    font-weight: 600;
}


/* CONTACT */

.contact {
    min-height: 360px;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    gap: 10px;
    background:
        radial-gradient(
            circle at center,
            #536432 0%,
            #46552b 70%,
            #3d4a26 100%
        );
    color: white;
}


/* FOOTER */

footer {
    min-height: 100px;
    padding: 30px 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #25291b;
    color: rgba(255, 255, 255, 0.45);

    text-align: center;
    font-size: 13px;
    letter-spacing: 0.5px;
}

footer p {
    margin: 0;
}

/* RESPONSIVE */

@media (max-width: 600px) {

    .wisdom-content {
        width: 94%;
        gap: 16px;
    }

    .wisdom-quote h1 {
        font-size: 25px;
        letter-spacing: 3px;
    }

    .wisdom-quote p {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .monkey-container {
        width: 420px;
    }

    .daily-thought {
        padding: 20px;
    }

    .daily-thought p {
        font-size: 16px;
    }

    .thought-button {
        padding: 13px 20px;
        font-size: 14px;
    }

    .section-transition {
        height: 75px;
    }

    .section-transition span {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .about-container {
        width: 94%;
    }

    .about-label {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .about h2 {
        font-size: 34px;
    }

    .article p {
        font-size: 16px;
    }
    .newsletter-form {
        flex-direction: column;
    }

    #submit {
        width: 100%;
    }

    .section-transition::before,
    .section-transition::after {
        width: 60px;
    }

    .section-transition::before {
        right: calc(50% + 65px);
    }

    .section-transition::after {
        left: calc(50% + 65px);
    }

    .about {
        padding: 80px 20px;
    }

    .about h2 {
        margin-bottom: 35px;
    }

    .article p {
        font-size: 16px;
        line-height: 1.7;
    }
}