@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: Archivo, sans-serif;
    margin: 0;
    padding: 0;
    color: #1c273d;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}



h1 {
    padding: 10px 0;
}

.title {
    text-align: center;
    margin-top: 20px;
}

.shop-title {
    margin-left: 2vw;
    margin-top: 2vw;
}



header {
    background-color: rgba(217, 224, 230, 1);
    display: flex;
    width: 100%;
    align-items: center;
    height: 5vh;
    /* position: fixed; */
    position: sticky;
    top: 0px;
    z-index: 99;
    padding: 10px 0;
    overflow: hidden;
}

header nav {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

header nav img {
    height: 40px;
    width: auto;
}

.nav-half {
    display: flex;
    justify-content: space-evenly;
    width: 50%;
}

nav a {
    padding: 5px;
    text-decoration: none;
    font-weight: 600;
}

.hamburger,
#hamburger,
.dropnav {
    display: none;
}












.video__container {
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 20px;
}

video {
    width: 100%;
    align-self: center;
}

.shop-button {
    position: absolute;
    background-color: #d9e0e6;
    padding: 10px 20px;
    margin-bottom: 5vh;
    text-align: center;
    text-decoration: none;
    z-index: 1;
    font-weight: 900;
    border-radius: 2px;
}

.video__container .link-button {
    position: absolute;
    right: 20px;
    padding: 10px;
}





section {
    background-color: #F1F1F1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 10vw;
    border-radius: 30px;
    margin: 20px 20px 30px 20px;
}

section p {
    margin: 20px;
}

.button {
    color: white;
    background-color: #1c273d;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 100px;
    display: inline-block;
}





.about-row1 {
    display: flex;
    margin: 0 30px 30px 30px ;
    gap: 30px;
    min-height: 25vw;
}

.about-row1 h1 {
    padding-bottom: 20px;
}

.about-row1__text {
    flex: 3;
    background-color: #F1F1F1;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.about-row1__text p {
    font-size: x-large;
}

.about-row1__img {
    flex: 2;
    /* background-color: antiquewhite; */
    background-image: url(media/istockphoto-heatpress.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-origin: content-box;
    border-radius: 20px;

}

.process {
    margin: 30px;
    background-color: #F1F1F1;
    padding: 30px;
    border-radius: 20px;
}

.process h1 {
    padding-bottom: 10px;
    text-align: center;
}

.process-table {
    width: 60%;
    border-collapse: collapse;
    margin: 20px auto;
    background-color: #d9e0e6;
}

.process-table th,
.process-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #1c273d;
}

.process-table th {
    background-color: #cad3db;
}

.process-table tbody tr:hover {
    background-color: #cad3db;
    transition: 0.1s;
}




.card-row {
    /* background-color: bisque; */
    margin-left: 2vw;
    margin-bottom: 30px;
    overflow: auto;
    white-space: nowrap;
}

.card {
    /* background-color: beige; */
    width: 15vw;
    display: inline-block;
    margin: 0 2vw 1vw 0;
}

.card__img {
    border-radius: 0.5vw;
    width: 15vw;
    height: calc(15vw*4/3);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    background-position: center center;
    /* cursor: pointer; */
}

.card p {
    padding: 3px 0;

}

.shirt {
    background-image: url(media/shirt-back.JPG);
}

.shirt:hover {
    background-image: url(media/shirt-front.JPG);
}

.hoodie {
    background-image: url(media/hoodie-back.JPG);
}

.hoodie:hover {
    background-image: url(media/hoodie-front.JPG);
}

.sticker-goomba {
    background-image: url(media/sticker-goomba.png);
    background-color: #f7f9fb;
}

.sticker-goom {
    background-image: url(media/sticker-goom.png);
    background-color: #f7f9fb;
}

.coming-soon {
    background-color: #f7f9fb;
    /* background-image: url(media/sticker-goomba.png); */
}





form {
    display: flex;
    flex-direction: column;
    width: 300px;
    padding: 2vw;
}

input {
    margin-bottom: 15px;
}






footer {
    padding: 60px;
    background-color: #d9e0e6;
    text-align: center;
    font-size: small;
}










@media(max-width: 1500px) {

    .card {
        width: 20vw;
    }

    .card__img {
        width: 20vw;
        height: calc(20vw*4/3);
    }
}

@media(max-width: 1200px) {

    .card {
        width: 27vw;
    }

    .card__img {
        width: 27vw;
        height: calc(27vw*4/3);
    }

    .about-row1__text p {
        font-size: larger;
    }
}

@media(max-width: 1000px) {
    .about-row1__text p {
        font-size: medium;
    }

    .about-row1__text h1 {
        font-size: x-large;
    }
}

@media (max-width: 600px) {
    .nav-half {
        justify-content: flex-end;
    }

    .nav-half a {
        display: none;
    }


    .hamburger {
        display: block;
        font-size: 30px;
        margin-right: 20px;
    }

    input:checked~.dropnav {
        display: block;
    }

    .dropnav a {
        display: block;
        padding: 20px;
        text-align: center;
    }
}