:root {
  --color-1: #dad5ff;
  --color-2: #ff83c8;
  --color-3: #7F398a;
  --color-4: #382051;

  --color-accent-1: white;
  --color-accent-2: black;
}

.navbar-nav {
    margin-left: auto;
}

.navbar {
    background-color: var(--color-4) !important;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: var(--color-accent-1);
}

.nav-link {
    color: var(--color-accent-1);
    --bs-nav-link-hover-color: var(--color-accent-1);
    font-size: 1.5em;
}

#nav-bar-logo-group {
    display: inline-flex;
    align-items: center;
}

#nav-bar-logo-group p {
    color: var(--color-accent-1);
    font-size: 1.5em;
}


/* Fixes dropdown menus placed on the right side */
.dropdown-menu {
    left: auto !important;
    right: 0;
}

.logo {
    height: 5em;
    width: 5em;
}

@font-face {
    font-family: neytiFont;
    src: url('/static/angrybirds-regular.ttf');
}

@font-face {
    font-family: Montserrat;
    src: url('/static/Montserrat-Regular.otf');
}

@font-face {
    font-family: Abhaya Libre ExtraBold;
    src: url('/static/AbhayaLibre-ExtraBold.ttf');
}

.footer {
    margin-top: 3em;
    padding: 1em;

    background: var(--color-4);
    color: var(--color-1);
}

.footer-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 1em;
}

.footer-1 #logo-footer {
    flex: 2 1 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 0.75em;

    & img {
        max-height: 20em;
    }

    & p {
        color: var(--color-1);
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
        font-family: Montserrat, sans-serif;
        font-size: 3.75rem;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
    }
}

.footer-1 #menu-footer {
    flex: 2 1 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 0.75em;

    #menu-footer-2 {
        margin: auto;
        display: inline-flex;
        flex-direction: column;

        & a {
            margin-left: 0;
            color: inherit; /* blue colors for links too */
            text-decoration: inherit; /* no underline */
        }
    }
}


.footer-1 #contact-footer {
    flex: 2 1 0;

    margin-bottom: 0.75em;
}

.footer-1 {
    & h5 {
        color: var(--color-1);
        font-family: Epilogue, sans-serif;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 800;
        line-height: 2rem; /* 133.333% */
        letter-spacing: 0.1875rem;
        text-transform: uppercase;
    }

    & a {
        color: var(--color-accent-1);
        font-family: Epilogue, sans-serif;
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem; /* 177.778% */

        flex-shrink: 0;
        margin: 0 0.25em;
    }
}

.footer-1 #link-footer {
    right: 0;

    display: inline-flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 0.75em;

    .social-rect-4 {
        margin: 0.25em;
        background-color: var(--color-1);
        height: 1em;
        width: 0.5em;
        border-radius: 10px;
    }
}

.footer-2 {
    background: var(--color-1);
    margin-left: 6vw;
    margin-right: 6vw;
    height: 0.15vw;
}

.footer-3 {
    margin-top: 1em;
    text-align: center;
}

.footer-3 p {
    color: rgba(255, 255, 255, 0.50);
    font-family: Epilogue, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
}

@media (max-width: 768px) {
    .footer-1 {
        flex-direction: column;
    }

    .footer-1 #logo-footer img {
        max-width: 250px;
    }

    .footer-1 #menu-footer #menu-footer-2 {
        flex-direction: row;
    }

    .footer-1 #link-footer {
        flex-direction: row;
        visibility: hidden;
        height: 0;
    }

    .logo {
        height: 4em;
        width: 4em;
    }
}

#social-icon {
    font-size: 5vmin;
    color: var(--color-1);
}