  html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
}

/*__________GOYO_________*/

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}


#goyo1 {
    background: url('/res/img/backgrounds/goyobg.png') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-top: -25px;
}

.goyolandingui {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

#goyocontent {
    width: 51%;
    position: absolute;
    left: 5%;
    bottom: 30%;
    transform: translateY(10%);
    animation: fadeIn 1s ease-in forwards 0.5s;
}

#general_gregorio {
    font-family: 'Bree Serif', serif;
    font-size: 4rem;
}

#linegoyo {
    background-color: #cda757;
    opacity: 100%;
    border: none;
    height: 3px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 10px;
}

#goyolandinguidesc {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: justify;
}

#goyolandingbutton {
    background: transparent;
    color: white;
    font-size: 1rem;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
}

#goyolandingbutton:hover {
    background: transparent;
    border: 2px solid #cda757;
    color: #cda757;

}

/*__________MORE ABOUT GOYO_________*/
#goyo2_life {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: url('/res/img/backgrounds/aboutbg.png') no-repeat center center / cover;
    color: #122348;
}

#goyo2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 90%;
    min-height: 60vh;
    margin: auto;
    animation: fadeInUp 2s ease-in-out;
}

#goyo_portrait img {
    width: 350px;
    margin-right: 30px;
    animation: fadeInUp 2s ease-in-out;
}

#goyo_life {
    flex: 1;
    text-align: justify;
    animation: fadeInUp 2s ease-in-out;
}

p {
    color: #122348;
}

#goyolandinguidesc {
    color: white;
}

.goyo_header,
.goyo_header2 {
    font-size: 28px;
    font-weight: bold;
    color: #122348;
    margin-bottom: 10px;
    font-family: 'Bree Serif', serif;
    animation: fadeInUp 2s ease-in-out;
}

.goyo2_life p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    font-family: 'Titillium Web', sans-serif;
    text-align: justify;
    animation: fadeInUp 2s ease-in-out;
}

#goyo_horse {
    text-align: right;
    margin-top: 50px;
    position: absolute;
    right: 50px;
    animation: fadeInUp 1s ease-in-out;
}

#goyo_horse img {
    margin-top: -100px;
    width: 350px;
    border-radius: 5px;
    animation: fadeInUp 1s ease-in-out;
}

#goyo_life2 p {
    width: 72%;
    text-align: justify;
    animation: fadeInUp 1s ease-in-out;
}

#goyo_life2 {
    margin-top: 50px;
    margin-bottom: 200px;
    padding-right: 50px;
    animation: fadeInUp 1s ease-in-out;
}

#goyo2-0 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 90%;
    min-height: 60vh;
    margin: auto;
    animation: fadeInUp 1s ease-in-out;
}

/*__________MEDIA QUERIES_________*/
@media screen and (min-width: 1650px) {
    #goyocontent {
        width: 60%;
        position: absolute;
        left: 5%;
        bottom: 40%;
        transform: translateY(5%);
    }

    #general_gregorio {
        font-family: 'Bree Serif', serif;
        font-size: 5rem;
    }

    #goyolandinguidesc {
        font-size: 1.5rem;
        line-height: 1.6;
        font-weight: 300;
        margin-bottom: 20px;
        text-align: justify;
    }

    #goyolandingbutton {
        font-size: 1.5rem;
    }

    .goyo_header,
    .goyo_header2 {
        font-size: 2.5rem;
        text-align: left;
    }

    #goyo_life p {
        font-size: 1.3rem;
    }

    #goyo_life2 p {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 1270px) {
    #goyo1 {
        height: 80vh;
        margin-top: -40px;
    }

    #goyocontent {
        width: 60%;
        position: absolute;
        left: 5%;
        bottom: 30%;
        transform: translateY(15%);
    }

    #general_gregorio {
        font-family: 'Bree Serif', serif;
        font-size: 2.8rem;
    }

    #goyolandinguidesc {
        font-size: 1.2rem;
        line-height: 1.6;
        font-weight: 300;
        margin-bottom: 20px;
        text-align: justify;
    }

    #goyo2,
    #goyo2-0 {
        display: block;
        align-items: center;
        text-align: center;
        height: auto;
        width: 100%;
    }

    #goyo_portrait img {
        width: 80%;
        max-width: 350px;
        margin: 0 auto;
    }

    #goyo_life {
        width: 100%;
        padding: 5px;
    }

    .goyo_header,
    .goyo_header2 {
        font-size: 2rem;
        text-align: left;
    }

    #goyo_life p {
        font-size: 1.1rem;
    }

    #goyo_horse img {
        max-width: 200px;
    }

    #goyo_horse {
        position: relative;
        text-align: center;
        right: 0;
        margin-top: 150px;
    }

    #goyo_life2 {
        width: 100%;
        padding: 0 10px;
        margin-bottom: 50px;
    }

    #goyo_life2 p {
        width: 100%;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 1024px) {
    #goyo1 {
        height: 60vh;
        margin-top: -40px;
    }

    #goyocontent {
        width: 60%;
        position: absolute;
        left: 5%;
        bottom: 30%;
        transform: translateY(15%);
    }

    #general_gregorio {
        font-family: 'Bree Serif', serif;
        font-size: 2rem;
    }

    #goyolandinguidesc {
        font-size: 0.9rem;
        line-height: 1.6;
        font-weight: 300;
        margin-bottom: 20px;
        text-align: justify;
    }

    #goyolandingbutton {
        background: transparent;
        color: white;
        font-size: 10px;
        padding: 6px 12px;
        border: 2px solid white;
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        text-transform: uppercase;
        font-weight: 600;
        text-decoration: none;
    }

    #goyo2,
    #goyo2-0 {
        display: block;
        align-items: center;
        text-align: center;
        height: auto;
        width: 100%;
    }

    #goyo_portrait img {
        width: 80%;
        max-width: 350px;
        margin: 0 auto;
    }

    #goyo_life {
        width: 100%;
        padding: 5px;
    }

    .goyo_header,
    .goyo_header2 {
        font-size: 1.7rem;
        text-align: left;
    }

    #goyo_life p {
        font-size: 1rem;
    }

    #goyo_horse img {
        max-width: 200px;
    }

    #goyo_horse {
        position: relative;
        text-align: center;
        right: 0;
        margin-top: 150px;
    }


    #goyo_life2 {
        width: 100%;
        padding: 0 10px;
        margin-bottom: 50px;
    }

    #goyo_life2 p {
        width: 100%;
        font-size: 1rem;
    }

}

@media screen and (max-width: 768px) {
    #goyo1 {
        height: 60vh;
        margin-top: -40px;
    }

    #goyocontent {
        width: 60%;
        position: absolute;
        left: 5%;
        bottom: 30%;
        transform: translateY(15%);
    }

    #general_gregorio {
        font-family: 'Bree Serif', serif;
        font-size: 1.7rem;
    }

    #goyolandinguidesc {
        font-size: 0.8rem;
        line-height: 1.6;
        font-weight: 300;
        margin-bottom: 20px;
        text-align: justify;
    }

    #goyolandingbutton {
        background: transparent;
        color: white;
        font-size: 10px;
        padding: 6px 12px;
        border: 2px solid white;
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        text-transform: uppercase;
        font-weight: 600;
        text-decoration: none;
    }

    #goyo2,
    #goyo2-0 {
        display: block;
        align-items: center;
        text-align: center;
        height: auto;
        width: 100%;
    }

    #goyo_portrait img {
        width: 80%;
        max-width: 350px;
        margin: 0 auto;
    }

    #goyo_life {
        width: 100%;
        padding: 5px;
    }

    .goyo_header,
    .goyo_header2 {
        font-size: 22px;
        text-align: left;
    }

    .goyo2_life p {
        font-size: 14px;
    }

    #goyo_horse img {
        max-width: 200px;
    }

    #goyo_horse {
        position: relative;
        text-align: center;
        right: 0;
        margin-top: 150px;
    }


    #goyo_life2 {
        width: 100%;
        padding: 0 10px;
        margin-bottom: 50px;
    }

    #goyo_life2 p {
        width: 100%;
    }

}

@media screen and (max-width: 480px) {
    #goyo1 {
        height: 40vh;
        margin-top: -25px;
    }

    #goyocontent {
        width: 60%;
        position: absolute;
        left: 5%;
        bottom: 30%;
        transform: translateY(25%);
    }

    #general_gregorio {
        font-family: 'Bree Serif', serif;
        font-size: 1rem;
        margin-top: 10px;
    }

    #goyolandinguidesc {
        font-size: 10px;
        line-height: 1.6;
        font-weight: 300;
        margin-bottom: 20px;
        text-align: justify;
    }

    #goyolandingbutton {
        background: transparent;
        color: white;
        font-size: 10px;
        padding: 6px 12px;
        border: 2px solid white;
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        text-transform: uppercase;
        font-weight: 600;
        text-decoration: none;
    }

    #goyo2,
    #goyo2-0 {
        display: block;
        align-items: center;
        text-align: center;
        height: auto;
        width: 100%;
    }

    #goyo_portrait img {
        width: 80%;
        max-width: 350px;
        margin: 0 auto;
    }

    #goyo_life {
        width: 100%;
        padding: 5px;
    }

    .goyo_header,
    .goyo_header2 {
        font-size: 22px;
        text-align: left;
    }

    .goyo2_life p {
        font-size: 14px;
    }

    #goyo_horse img {
        max-width: 200px;
    }

    #goyo_horse {
        position: relative;
        text-align: center;
        right: 0;
        margin-top: 150px;
    }


    #goyo_life2 {
        width: 100%;
        padding: 0 10px;
        margin-bottom: 50px;
    }

    #goyo_life2 p {
        width: 100%;
    }

}