@import url('https://fonts.googleapis.com/css2?family=Climate+Crisis&family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Climate+Crisis&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Climate+Crisis&family=Lalezar&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.fade-slide {
    animation: fadeInSlideDown 0.5s ease-in-out;
}

@keyframes fadeInSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 0.75em;
}

h2 {
    font-family: "Lalezar", sans-serif;
    color: #3b5998 !important;
}

h3 {
    color: #5a4c9f;
    font-family: "Roboto", sans-serif;
}

p {
    max-width: 40em;
    font-family: "Roboto", sans-serif;
}

hr {
    margin: 2em;
}

.navbar {
    padding-left: 1em;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 0.2em solid orange;
    background-color: rgb(237, 237, 237) !important;
    margin-bottom: 3em;
}

.navbar-nav {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.nav-link {
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.nav-link:hover {
    background-color: rgb(213, 213, 213) !important;
}

.nav-link svg {
    margin-right: 0.5em;
}

.icon-link {
    display: flex;
    align-items: center;
}

.front-page-title {
    font-weight: 800;
}

.front-page-text {
    margin: 4em;
    text-align: center;
}

.flex {
    display: flex;
}

.gap4 {
    gap: 4em;
}

.gap3 {
    gap: 3em;
}

.gap2 {
    gap: 2em;
}

.gap1 {
    gap: 1em;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.wrap {
    flex-wrap: wrap;
}

.col {
    flex: 1;
    min-width: 20em;
}

.col h3 {
    margin-top: 1.5em;
}

.text-secondary {
    color: #3b5998 !important;
}

.nolink {
    text-decoration: none;
}

.nice-link {
    text-decoration: none;
    color: #3b5998;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.shop-category {
    width: 30em;
    min-height: 8.25em;
    transition: 0.2s;
}

.shop-category:hover {
    background-color: #f0f0f0;
    border-color: #a4a4a4;
}

.shop-category:active {
    background-color: #e0e0e0;
    border-color: #000000;
}

.shop-category img {
    height: 20em;
    width: 29.9em;
    object-fit: cover;
}

.shop-product {
    min-height: 5em;
}

.grade img {
    height: 8em;
    width: 8em;
    object-fit: cover;
    border-radius: 50%;
}

.grade h4 {
    font-family: "Unbounded", sans-serif;
    font-weight: 500;
}

.footer {
    margin-top: auto;
}

.footer-content {
    margin-top: 5.5em;
    background-color: #10253f;
    color: white;
    padding: 1em;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer-content a {
    color: white;
    font-weight: bold;
}

::-moz-selection {
    color: black;
    background: orange;
}

::selection {
    color: black;
    background: orange;
}

.page-not-found * {
    text-align: center;
}

.page-not-found h1, .page-not-found h2 {
    font-size: 4em;
}

.page-not-found p {
    font-size: 1.5em;
}

/* Style for the Honeypot field - MUST be invisible to humans */
.validation_special {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -5000px !important;
    height: 0 !important;
    width: 0 !important;
}