@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Fonts */
@font-face {
    font-family: 'ROG';
    src: url('../fonts/ROGLyonsTypeRegular3.woff') format('woff');
}

:root {
    --primary-color: #BDA33B;
    --secondary-color: #000000;
    --tertiary-color: #D9D9D9;
    --quaternary-color: #FFFFFF;
}

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

/* General Styles */
a {
    text-decoration: none;
    color: var(--secondary-color);
}

button {
    /* remove default styles */
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: block;
}

ul {
    list-style-type: none;
    padding: 0;
}

.slide-up {
    transition: all 0.5s ease;
}

.slide-up:hover {
    transform: translateY(-5px);
}

/* Custom Styles */
.col-20-percent {
    width: 20%;
    min-width: 168px;
}

.font-rog {
    font-family: 'ROG', sans-serif;
    color: var(--primary-color);
    text-shadow: 4px 4px 0 black;
}

#splash-screen {
    background-color: var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 2s ease;
    z-index: 1000;

    img {
        width: 50%;
    }
}

#splash-screen.remove {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body {
    background-color: var(--tertiary-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Navigation bar */
.nav-link {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 3rem 1rem 0;

    h5 {
        text-transform: uppercase;
        font-size: 0.9rem;
        font-weight: 700;
    }

    a {
        /* break letters */
        word-break: break-all;
        word-wrap: break-word;
        font-size: 0.85rem;
    }

    p {
        margin-top: 1rem;
        font-size: 0.85rem;
    }

    ul {
        li {
            font-size: 0.85rem;
        }
    }

    .footer-right-logo {
        max-width: 300px;
    }

    .socmed-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;

        a {
            display: inline-flex;
            background-color: var(--secondary-color);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            color: var(--primary-color);
            justify-content: center;
            align-items: center;
        }
    }
}

/* HOME */
#landing {
    /* min-height: calc(100vh - 66px); */
    background-image: url('../images/home/jersey_bg.png');
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;

    #titles {
        margin-bottom: 1.75rem;

        .landing-title {
            color: var(--primary-color);
            text-transform: uppercase;
            font-size: 2.5rem;
            font-family: 'ROG', sans-serif;
            max-width: 320px;
            text-shadow: 4px 4px 0 black;
        }
    }

    .shop-btn {
        display: inline-block;
        cursor: pointer;
        background-color: var(--primary-color);
        color: var(--quaternary-color);
        padding: .5rem 3rem;
        border-radius: 30px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 3rem;
    }

    .items-container {
        overflow-x: auto;
        flex-wrap: nowrap;

        .landing-box {
            padding: .5rem;
            background-color: #58555450;
            border-radius: 12px;

            .img-container {
                /* background-color: #585554a9; */
                width: 100%;
                aspect-ratio: 4/3;
                border-radius: 8px;
                margin-bottom: 0.75rem;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

            p {
                margin-bottom: 0;
                color: #fff;
            }
        }
    }
}

#pride,
#support {
    .box {
        .img-container {
            background-color: #585554;
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 8px;
            margin-bottom: 0.75rem;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        p {
            font-weight: 700;
            text-transform: uppercase;
        }
    }
}

/* PRODUCTS */
#products {
    .product-box {
        display: block;
        background-color: #585554;
        padding: 0.5rem;
        margin: 0.75rem 0;
        text-align: center;
        border-radius: .5rem;
        height: 100%;

        .coming-soon {
            background-color: #C4C4C4;
            margin: 1rem;
            border-radius: 0.5rem;

            img {
                object-fit: contain;
            }
        }

        img {
            width: 80%;
            aspect-ratio: 9/10;
            object-fit: cover;
            transition: all 0.5s ease;

            &:hover {
                transform: scale(1.1);
            }
        }

        .product-info {
            display: flex;
            margin-top: .75rem;
            justify-content: space-between;

            h6 {
                font-weight: 700;
                color: #fff;
                margin-bottom: 0;
            }

            p {
                color: #fff;
                margin-bottom: 0;
            }
        }
    }
}

#product {
    .product-images {
        .big-img {
            width: 100%;

        }

        .small-images {
            display: flex;
            flex-wrap: wrap;
            gap: .1rem;

            img {
                width: 19%;
                border-radius: 10px;
            }
        }
    }

    .product-details {
        .name {
            font-weight: 700;
        }

        .price {
            font-weight: 700;
            font-weight: 1.1rem;
            color: var(--primary-color);
        }

        ul {
            /* add bullets */
            list-style-type: disc;
            margin-left: 1rem;
        }

        .buttons {
            display: flex;
            gap: 1rem;

            a {
                background-color: var(--primary-color);
                color: var(--quaternary-color);
                padding: .5rem 2rem;
                border: none !important;
                border-radius: 30px;
                margin-top: 1rem;
            }
        }
    }
}

/* TRACKING */
#tracking-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;

    #tracking {
        form {
            text-align: center;

            .desc {
                max-width: 450px;
                text-align: center;
            }

            input {
                background-color: #6C6C6C;
                color: var(--quaternary-color) !important;
                max-width: 300px;
                padding: .5rem 1rem;
                border-radius: 12px;
            }

            input::placeholder {
                color: var(--tertiary-color) !important;
                text-align: center;
            }

            button {
                background-color: var(--primary-color);
                color: var(--quaternary-color);
                padding: .5rem 1rem;
                border: none !important;
                border-radius: 12px;
                margin-top: 1rem;
                width: 100%;
                max-width: 200px;
            }
        }
    }
}

/* CATEGORIES */
.categories {
    .left-side-bar {
        ul {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;

            li a {
                font-weight: 700;
                color: var(--secondary-color);
                text-transform: uppercase;
                font-size: 1.3rem;

                &.active {
                    color: var(--primary-color);
                    text-shadow: 1px 1px 0 black;
                }
            }
        }
    }

    .content {

        &.upcoming-events {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        img {
            width: 100%;
            border-radius: .5rem;
            height: 100%;
            object-fit: cover;
            transition: 0.5s ease;

            &:hover {
                transform: translateY(-10px);
            }
        }

        .text-container {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            height: 100%;
            font-size: 1.75rem;
            font-weight: 700;
            color: #DA7924;
            text-transform: uppercase;
            font-style: italic;
            text-shadow: 2px 0 5px #696969;
        }
    }
}

/* FAQs */
#faqs {
    .faq {
        margin-bottom: 1rem;

        .faq-title {
            font-size: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }
    }
}

/* CART */
#cart {
    .cart-product {
        display: flex;
        gap: 1rem;
        background-color: #58555450;
        padding: 1rem;
        border-radius: .75rem;
        height: 100%;

        img {
            width: 55%;
            object-fit: cover;
        }

        .name {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: .25rem;
            color: #fff;
        }

        .price {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: .25rem;
            color: var(--primary-color);
        }

        .quantity {
            border: none;
            width: 100%;
            padding: 0.25rem 0.75rem;
            border-radius: 30px;
            text-align: center;

            /* remove the up and down updater */
            -webkit-appearance: none;
            /* Safari and Chrome */
            -moz-appearance: textfield;
            /* Firefox */
            appearance: textfield;
            /* Standard */
        }

        .quantity-btns {
            display: flex;
            gap: 0.5rem;
            justify-content: space-between;
            margin: 0.75rem 0;

            button {
                background-color: #fff;
                padding: 0.1rem 0.75rem;
                width: 40px;
                text-align: center;
                border-radius: 30px;
            }
        }

        select {
            background-color: #fff;
            padding: 0.25rem;
            border-radius: 30px;
            border: none;
            width: 100%;
        }
    }

    .check-out-form {
        background-color: #585554;
        height: 100%;
        border-radius: .75rem;
        padding: 2rem 1rem;
        color: #fff;

        h3 {
            font-weight: 700;
        }

        input {
            width: 100%;
            padding: 0.75rem 1rem;
            background-color: #6C6C6C;
            border: none;
            margin-bottom: 0.5rem;
            border-radius: 10px;
            color: #fff;
        }

        input::placeholder {
            color: var(--tertiary-color);
        }

        input[type="radio"] {
            width: auto;
        }

        label {
            width: 70%;
            display: block;
            background-color: var(--quaternary-color);
            color: var(--secondary-color);
            font-weight: 600;
            padding: 0.75rem 1rem;
            margin-bottom: .75rem;
            border-radius: 0.5rem;
            cursor: pointer;
        }

        #total-amount {
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: 700;
        }

        #check-out-btn {
            width: 100%;
            background-color: var(--quaternary-color);
            padding: 0.75rem 1rem;
            border-radius: 10px;
            font-weight: 700;
        }
    }
}

/* SUCCESS */
#success-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;

    #success {
        form {
            text-align: center;

            .desc {
                max-width: 450px;
                text-align: center;
            }

            input {
                background-color: #6C6C6C;
                color: var(--quaternary-color) !important;
                max-width: 300px;
                padding: .5rem 1rem;
                border-radius: 12px;
            }

            input::placeholder {
                color: var(--tertiary-color) !important;
                text-align: center;
            }

            a {
                display: block;
                background-color: var(--primary-color);
                color: var(--quaternary-color);
                padding: .5rem 1rem;
                border: none !important;
                border-radius: 12px;
            }

            a.home-btn {
                background-color: #6C6C6C !important;
                color: var(--quaternary-color);
            }
        }
    }
}

/* SERVICES */
#services {
    .content-title {
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: .5rem;
    }

    .content-img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: 0.35rem;
        transition: 0.3s ease;

        &:hover {
            transform: scale(1.075);
        }
    }

    .event-img {
        width: 100%;
        aspect-ratio: 3/5;
        object-fit: cover;
        border-radius: 0.35rem;
        transition: 0.3s ease;

        &:hover {
            transform: scale(1.1);
        }
    }

    form {
        input, select {
            width: 100%;
            padding: 0.25rem 1rem;
            background-color: #fff;
            border: none;
            margin-bottom: 0.5rem;
            border-radius: 10px;
            color: var(--secondary-color);
        }

        button {
            width: 100%;
            background-color: #FFCB6B;
            color: var(--secondary-color);
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 10px;
            margin-top: 1rem;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 0.8rem;
        }
    }
}

@media only screen and (max-width: 991.5px) {
    .categories {
        .left-side-bar {
            ul {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                margin-bottom: 2.5rem !important;
            }
        }
    }

    #services {
        .content-title {
            font-size: 1.5rem;
        }
    }
}

@media only screen and (max-width: 600px) {
    #cart {
        .cart-product {
            flex-direction: column;

            img {
                width: 90%;
                text-align: center;
            }
        }
    }
}

@media only screen and (max-width: 468px) {
    #landing {
        .landing-title {
            font-size: 1.5rem;
        }
    }
}