@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Paytone+One&family=Rubik+Mono+One&display=swap');

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-red: #EB533B;
    --color-peach: #FFAA73;
    --color-purple: #4A42AB;
    --color-orange: #FF8C42;
    --color-brown: #B83816;
    --color-light-orange: #FF8F3E;
    --color-dark-red: #921400;
}

* {
    font-family: 'Open Sans', sans-serif;
}

.text-open-sans {
    font-family: 'Open Sans', sans-serif !important;
}

.text-paytone {
    font-family: 'Paytone One', sans-serif !important;
}

.text-rubik {
    font-family: 'Rubik Mono One', sans-serif !important;
}

.text-red {
    color: var(--color-red);
}

.go-up {
    transform: translateY(-46px);
}

.hide {
    display: none;
}

body {
    background-color: var(--color-red);
}

nav {
    position: relative;
    z-index: 2;
}

nav .logo {
    width: 60px;
    z-index: 9;
}

nav .logo img {
    width: 100%;
    z-index: 9;
}

nav ul li:not(:last-child) {
    margin-right: 8px;
}

nav ul li a {
    background-color: var(--color-white);
    border-radius: 30px;
    padding: 5px 20px;
    font-weight: 700;
    color: var(--color-red) !important;
    text-decoration: none !important;

    transition: all 0.3s;
}

nav ul li a:hover {
    background-color: var(--color-peach);
    /* color: var(--color-white) !important; */
}

nav ul li a.active {
    background-color: var(--color-orange);
    color: var(--color-white) !important;
}

.hamburger button {
    font-size: 24px;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 50%;
    min-width: 300px;
    overflow: hidden;

    background-color: var(--color-peach);

    transition: all 0.3s;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 90px;
    list-style: none;
    padding: 0;
}

.mobile-nav ul li {
    width: 100%;
    margin-right: 0 !important;
}

.mobile-nav ul li:not(:last-child) {
    margin-bottom: 10px;
}

.mobile-nav ul li a {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 0;
    font-weight: 700;
    padding: 20px;
}

footer {
    background-color: var(--color-peach);
}

footer .img-logo {
    width: 100px;
}

footer .info-icon {
    width: 30px;
}

footer .info * {
    color: var(--color-dark-red);
    text-decoration: none;
    font-weight: 700;
}

footer .copyright {
    color: var(--color-dark-red);
    font-weight: 700;
    text-align: center;
}

/* HOME */
#home #hero {
    background: linear-gradient(rgba(202, 206, 173, 0.5), rgba(202, 206, 173, 0.5)), url('../images/homepage.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

#home #hero .container {
    min-height: 50vh;
}

#home #hero h1 {
    font-weight: 900;
    font-size: 2.5rem;
}

#home #hero h1.blue {
    color: var(--color-purple);
    text-shadow: 2px 2px 0 #7166e3;
}

#home #hero h1.red {
    color: var(--color-brown);
    text-shadow: 2px 2px 0 #dd958a;
}

#home #content .box {
    background-color: var(--color-brown);
    height: 100%;
}

#home #content .box img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 8px solid var(--color-peach);
}

#home #content .box h3 {
    text-transform: uppercase;
    color: var(--color-peach);
    font-weight: 800;
}

#home #content .box p {
    color: var(--color-peach);
}

/* ABOUT US */
#about #mission {
    background-color: var(--color-orange);
}

#about .row .img-mv {
    height: 100%;
}

#about .row .img-mv img {
    border: 8px solid var(--color-peach);
    height: 100%;
    object-fit: cover;
}

#about .row .texts .title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--color-dark-red);
}

#about .row .texts p {
    color: var(--color-dark-red);
}

/* CONTACT US */
#contact {
    min-height: calc(100vh - 342px);
}



#contact .row .map iframe {
    border: 8px solid var(--color-peach);
    width: 100%;
    aspect-ratio: 1/1;
}

#contact .row .texts .title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--color-dark-red);
}

#contact .row .texts p {
    color: var(--color-dark-red);
    font-weight: 700;
}

/* BAYAD PO */
#bayad .row .img {
    height: 100%;
}

#bayad .row .img img {
    height: 100%;
    object-fit: cover;
    border: 8px solid var(--color-peach);
}

#bayad .row .texts .title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--color-dark-red);
}

#bayad .row .texts p {
    color: var(--color-dark-red);
}

#bayad .row .texts button {
    color: var(--color-red);
    font-weight: 800;
}

/* PARA PO DITO */
#articles h2 {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 2.4rem;
    margin-bottom: 32px;
}

#articles .article {
    background-color: var(--color-orange);
    display: flex;
    margin-bottom: 32px;

    transition: all 0.3s;
}

#articles a.article:hover {
    background-color: var(--color-brown);
    text-decoration: underline !important;
}

#articles .article img {
    width: 400px;
    max-width: 35%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 8px solid var(--color-peach);
}

#articles .article .info {
    padding: 20px;
}

#articles .article .info .headline {
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

#full-article {
    margin-bottom: 32px;
}

#full-article .container {
    background-color: var(--color-peach);
}

#full-article .headline {
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
}

#full-article .writer-date {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 32px;
}

#full-article .row {
    align-items: center;
}

#full-article .row img {
    border: 8px solid var(--color-red);
}

#full-article .row .info h4 {
    font-size: 2rem;
    font-weight: 800;
}

/* media query */
@media (max-width: 768px) {
    nav ul.navbar-nav {
        display: none !important;
    }

    .hide {
        display: block;
    }

    nav .logo {
        width: 45px;
    }

    .go-up {
        transform: translateY(0);
    }

    /*  HOME*/
    #home #hero {
        margin-bottom: 12px;
    }

    /* ABOUT */
    #about #mission {
        margin-bottom: 2.5rem;
    }

    /* PARA PO DITO */
    #articles .article {
        flex-direction: column;
    }

    #articles .article img {
        width: 100%;
        max-width: 100%;
    }

    #full-article .row .info h4 {
        font-size: 1.8rem;
        font-weight: 700;
    }
}