/* Bootstrap */
@import "bootstrap/dist/css/bootstrap.min.css";

/* Fonts */
@font-face {
    font-family: "Jungle Giant Print";
    src: url("../font/JungleGiant/JungleGiantPrint.otf") format("opentype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../font/Inter/Inter-VariableFont-Normal.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


:root {
    --primary-font: "Funnel Display", sans-serif;
    --secondary-font: "Playfair Display", sans-serif;
    --button-font: "Rethink Sans", sans-serif;
    --color-black: #121212;
    --color-white: #ffffff;
    --color-accent: #FF1F00;
}

body {
    font-family: var(--primary-font);
    color: var(--color-white);
    font-size: 18px;
    line-height: 1.1em;
    background-color: var(--color-black);
}

@media (max-width: 991px) {
    body {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

.container {
    max-width: 1400px;
    padding-inline: 50px;
}

@media (max-width: 991px) {
    .container {
        padding-inline: 30px;
    }
}

@media (max-width: 767px) {
    .container {
        padding-inline: 20px;
    }
}

a {
    color: inherit;
    text-underline-offset: 2px;
}

img {
    max-width: 100%;
}


/* Base Typography */
.main-h1 {
    font-size: 134px;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: -8.04px;
}

.main-h2 {
    font-size: 114px;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: -6.84px;
}

.main-h2 span {
    font-family: var(--secondary-font);
    font-style: italic;
}

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

@media (max-width: 1399px) {
    .main-h1 {
        font-size: 110px;
    }

    .main-h2 {
        font-size: 95px;
    }
}

@media (max-width: 1199px) {
    .main-h1 {
        font-size: 90px;
        letter-spacing: -6px;
    }

    .main-h2 {
        font-size: 75px;
    }
}

@media (max-width: 991px) {
    .main-h1 {
        font-size: 80px;
        line-height: 1.1em;
    }

    .main-h2 {
        font-size: 70px;
        letter-spacing: -5px;
    }
}

@media (max-width: 767px) {
    .main-h1 {
        font-size: 43px;
        letter-spacing: 0px;
        line-height: 1.35em;
    }

    .main-h2 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }
}

/* buttons */
.btn {
    text-decoration: none;
    border-radius: 0px;
    border: 0px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.2em;
    font-family: var(--button-font);
    transition: all 1.0s ease;
}

.btn:hover {
    transform: scale(1.07);
}

.btn:after {
    margin-bottom: -5px;
}

.btn-primary {
    color: var(--color-white) !important;
    background-color: var(--color-accent) !important;
    padding: 12px 15px;
}

.btn-primary:after {
    content: url(../images/btn-prim-arr.svg);
}

.btn-secondary {
    color: var(--color-accent) !important;
    background-color: #fff0 !important;
    padding: 0px 0px;
}

.btn-secondary:after {
    content: url(../images/btn-sec-arr.svg);
}

.btn-no-icon:after {
    display: none;
}

/* Row Gap */
.row-gap-10 {
    row-gap: 10px;
}

.row-gap-15 {
    row-gap: 15px;
}

.row-gap-20 {
    row-gap: 20px;
}

.row-gap-25 {
    row-gap: 25px;
}

.row-gap-30 {
    row-gap: 30px;
}

.row-gap-35 {
    row-gap: 35px;
}

.row-gap-40 {
    row-gap: 40px;
}

.row-gap-45 {
    row-gap: 45px;
}

.row-gap-50 {
    row-gap: 50px;
}

/* Column Gap */
.column-gap-10 {
    column-gap: 10px;
}

.column-gap-15 {
    column-gap: 15px;
}

.column-gap-20 {
    column-gap: 20px;
}

.column-gap-25 {
    column-gap: 25px;
}

.column-gap-30 {
    column-gap: 30px;
}

.column-gap-35 {
    column-gap: 35px;
}

.column-gap-40 {
    column-gap: 40px;
}

.column-gap-45 {
    column-gap: 45px;
}

.column-gap-50 {
    column-gap: 50px;
}

/* General Gap */
.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-25 {
    gap: 25px;
}

.gap-30 {
    gap: 30px;
}

.gap-35 {
    gap: 35px;
}

.gap-40 {
    gap: 40px;
}

.gap-45 {
    gap: 45px;
}

.gap-50 {
    gap: 50px;
}

/* animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.5);
    }

    100% {
        box-shadow: 0 0 0 35px rgba(37, 211, 102, 0);
    }
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}