:root {
    --thickness: 10px;
}

/* flex utilities */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

img {
    display: block;
}

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

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

.flex-wrap {
    flex-wrap: wrap;
}

.flex-grow {
    flex: 1;
}

.gap-tiny {
    gap: 8px;
}

.gap-1x {
    gap: 16px;
}

.gap-2x {
    gap: 32px;
}

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

.flex-start {
    align-items: flex-start;
}

.align-items-ctr {
    align-items: center;
}

.justify-ctr {
    justify-content: center;
}

.col-50 {
    width: 50%;
}

.flex-right {
    margin-left: auto;
}

.cal-sans-regular {
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* fonts */
.cal-sans-regular {
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.geist {
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 144px;
    line-height: 1;
}

h3,
.h3, 
.menu-title {
    font-size: 48px;
    font-weight: 600;
}


.text-align-ctr {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-big {
    font-size: 88px;
}

/* containers */
.content-width {
    width: 80%;
    max-width: 1420px;
}

.menu-width {
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
}

.rounded {
    border-radius: 32px;
}

.col-sm {
    min-width: 264px;
}

main {
    margin: 32px;
    gap: 0;
    visibility: hidden;
    opacity: 0;
}

.splash {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100dvh;
}

.col-checker-sm {
    background-image: url("assets/imgs/checkers.png");
    height: 264px;
    min-width: 264px;
}

.col-checker-md {
    background-image: url("assets/imgs/checkers.png");
    height: 320px;
}

#smooth-content {
    padding-bottom: 32px;
}

/* images */
.img {
    width: 100%;
    height: 100%;
    max-width: 1420px;
}

.img-holder {
    overflow: hidden;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
    aspect-ratio: 16 / 9;
}

/* borders */
.border {
    border: var(--thickness) solid #C22B1E;
}

.border-x {
    border-left: var(--thickness) solid #C22B1E;
    border-right: var(--thickness) solid #C22B1E;
}

.border-y {
    border-top: var(--thickness) solid #C22B1E;
    border-bottom: var(--thickness) solid #C22B1E;
}

/* padding */
.padding-y-sm {
    padding-top: 48px;
    padding-bottom: 48px;
}

.padding-y-md {
    padding-top: 120px;
    padding-bottom: 120px;
}

.padding-x {
    padding-left: 24px;
    padding-right: 24px;
}

.padding-bottom-md {
    padding-bottom: 120px;
}
.padding-top-md {
    padding-top: 120px;
}

/* logo */
.logo {
    width: 200px;
}

/* ticker */
.ticker-wrap {
    overflow: hidden;
    padding: 40px;
}

.ticker {
    overflow: visible;
    width: 100%;
    height: 100px;
    /* adjust to fit your image height */
    position: relative;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    gap: 64px;
}

.ticker img {
    width: auto;
    height: 100px;
    flex-shrink: 0;
    transform: rotate(35deg);
}

.ticker img:nth-child(2n) {
    width: auto;
    height: 100px;
    flex-shrink: 0;
    transform: rotate(30deg);
}

.word {
    overflow: hidden;
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
    transform-origin: bottom;
}

/* colors */
.bg-red {
    background-color: #C22B1E;
    color: white;
}

.bg-white {
    background-color: white;
    color: #C22B1E;
}

.bg-yellow {
    background-color: #FFBB00;
    color: #C22B1E;
}

.bg-split-red-yellow {
    background: #C22B1E;
    background: linear-gradient(180deg, rgba(194, 43, 30, 1) 50%, rgba(255, 187, 0, 1) 50%);
}

.bg-split-yellow-red {
    background: #C22B1E;
    background: linear-gradient(180deg, rgba(255, 187, 0, 1) 50%, rgba(194, 43, 30, 1) 50%);
}

.text-yellow {
    color: #FFBB00;
}

/* menu */

.menu {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    gap: 8px;

}

.item-main {
    display: flex;
    justify-content: space-between;
}

.item,
.price {
    font-size: 2rem;
    font-weight: 500;
}

.gap {
    gap: 16px;
}

.gap-md {
    gap: 120px;
}

.btn {
    background-color: #FFBB00;
    /* color: black; */
    display: flex;
    width: 100%;
    padding: 16px 48px;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
    color: #C22B1E;
    text-align: center;
    font-family: Geist;
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.92px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .3s ease;
}

.btn:hover {
    transform: scale(0.98);
    color: #FFBB00;
    background-color: #C22B1E;
}

h1 div {
    overflow: hidden;
}

h1>div:nth-child(2),
h1>div:nth-child(3),
h1>div:nth-child(4) {
    padding-bottom: 10px;
}

h1 div>div {
    overflow: visible;
}

h1 div>div:nth-child(5),
h1>div:nth-child(2)>div,
h1>div:nth-child(3)>div,
h1>div:nth-child(4)>div {
    color: #FFBB00;
}

main>div {
    margin-top: -1px;
}

.visible-md {
    display: none;
}
.hidden-md {
    display: flex;
}

/****************************************************************************************************/
/* media queries */


/* Large screens */
@media screen and (max-width: 1440px) {
    h1 {
        font-size: 112px;
    }

    .h3 {
        font-size: 24px;
    }

    

    .col-sm,
    .col-checker-sm {
        min-width: 154px;
    }

    .text-big {
        font-size: 64px;
    }

    main {
        margin: 20px;
    }

    .content-width,
    .menu-width {
        width: 80%;
    }

    :root {
        --thickness: 8px;
    }

}

/* Medium screens */
@media screen and (max-width: 993px) {
    main {
        margin: 8px;
        /* border-radius: 32px 32px 0 0 !important; */
        overflow: hidden;
    }

    h1>div:nth-child(2) {
        padding-bottom: 0;
    }

    .content-width,
    .menu-width {
        width: 90%;
    }
    .menu-title {
        font-size: 32px;
    }
    .btn {
        font-size: 32px;
        letter-spacing: -1px;
    }
    .flex-col-md {
        flex-direction: column;
    }
    .img-holder {
        width: 100%!important;
        border: 0 !important;
        /* border-top: var(--thickness) solid #C22B1E!important;
        border-bottom: var(--thickness) solid #C22B1E!important; */
        border-radius: 0!important;
        box-shadow: none!important;
    }
    .visible-md {
        display: flex;
    }
    .hidden-md {
        display: none;
    }
    .gap-sm {
        gap: var(--thickness);
    }
    /* padding */
    .padding-y-sm {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .padding-y-md {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .padding-x {
        padding-left: 16px;
        padding-right: 16px;
    }

    .padding-bottom-md {
        padding-bottom: 0px;
    }
    .padding-top-md {
        padding-top: 0px;
    }
    

}

/* small screens */
@media screen and (max-width: 600px) {
    h1>div:nth-child(2) {
        padding-bottom: 0;
    }

    .content-width,
    .menu-width {
        width: 100%;
    }
    .btn {
        font-size: 32px;
    }
    .flex-col-md {
        flex-direction: column;
    }
    .img-holder {
        width: 100%!important;
        border: 0 !important;
        /* border-top: var(--thickness) solid #C22B1E!important;
        border-bottom: var(--thickness) solid #C22B1E!important; */
        border-radius: 0!important;
    }
    .visible-md {
        display: flex;
    }
    .hidden-md {
        display: none;
    }
    h1 {
        font-size: 72px;
    }

    .h3 {
        font-size: 24px;
    }
    .text-big {
        font-size: 48px;
    }
    .menu {
        width: 90%;
        gap: 48px;
    }
    .col-checker-sm {
        height: 144px;
    }
    

}

/* extra small screens */
@media screen and (max-width: 460px) {
    :root {
        --thickness: 4px;
    }
    h1>div:nth-child(2) {
        padding-bottom: 10px;
    }

    .content-width,
    .menu-width {
        width: 100%;
    }
    .btn {
        font-size: 32px;
    }
    .flex-col-md {
        flex-direction: column;
    }
    .img-holder {
        width: 100%!important;
        border: 0 !important;
        border-radius: 0!important;
    }
    .visible-md {
        display: flex;
    }
    .hidden-md {
        display: none;
    }
    h1 {
        font-size: 40px;
    }

    .h3 {
        font-size: 16px;
    }
    .text-big {
        font-size: 32px;
        line-height: 1;
    }
    .item, .price {
        font-size: 1.25rem;
    }
    .desc {
        font-size: 0.8rem;
    }
    .menu-title, .btn {
        font-size: 20px;
    }
    h1>div:nth-child(3) {
        padding-bottom: 0;
    }
    .logo {
        width: 50%;
    }
    .padding-y-md {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .col-checker-sm {
        height: 136px;
    }
    .col-checker-md {
        height: 129px;
    }
    .ticker-track {
        gap: 32px;
    }
    .ticker,
    .ticker img,
    .ticker img:nth-child(2n) {
    height: 60px;
    }
    .menu {
        width: 100%;
        gap: 32px;
    }


}