*{
    box-sizing: border-box;
}
body {
    font-family: Mada, serif;
    margin: 0;
    font-size: 1.5rem;
    font-weight: normal;
    color: #F5F5DC;
    background-color: #A79065;
    background-image: url("/images/45-degree-fabric-dark.png");
    @media screen and (max-width: 1250px){
        font-size: 1rem;
    }
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    flex: 1;
    padding-bottom: 1rem;
}
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}
a{
    color: inherit;
    text-decoration: inherit;
}
.link{
    font-weight: bold;
    &:hover{
        text-decoration: underline;
        text-underline-offset: 3px;
        cursor: pointer;
    }
}

ul{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}

.text-brown{
    color: #694D26;
}
.text-beige{
    color: #F5F5DC;
}
.text-purple{
    color: purple;
}

.button-dark, .button-light{
    border-radius: 1.5rem;
    padding: 0.75rem 1rem;

    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.2);
    border: none;

    &:hover{
        opacity: 100%;
        cursor: pointer;
        box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.25);
    }

    @media screen and (max-width: 1250px){
        font-size: 1rem;
    }
}
.button-dark{
    background-color: #A79065;
    color: #F5F5DC;
    &:hover{
        background-color: #7B6A4B;
    }
}

.button-light{
    background-color: #F5F5DC;
    color: #694D26;

    &:hover{
        background-color: #d3d3aa;
    }
}


.container{
    padding: 1rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 2rem;
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
}
.container-light{
    color: #694D26;
    padding: 1rem 1.5rem;
    background-color: rgba(245, 245, 220, 0.5);
    border-radius: 2rem;
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
}
.center-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container form{
    padding: 0.75rem 0.75rem;
    @media screen and (max-width: 500px){
        padding: 0;
    }
}
form label{
    display: block;
    margin-top: 0.5rem;
}
form input, form select{
    min-width: 300px;
    width: 100%;
    height: 30px;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    @media screen and (max-width: 350px){
        min-width: 250px;
    }
    @media screen and (max-width: 300px){
        min-width: 200px;
    }
}
form button{
    font-size: 1.5rem;
}

h1{
    font-family: "Amatic_SC", sans-serif;
    font-size: 5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;

    @media screen and (max-width: 1250px){
        font-size: 3rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    @media screen and (max-width: 850px){
        font-size: 2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

h2{
    font-family: "Amatic_SC", sans-serif;
    font-size: 2.5rem;
    @media screen and (max-width: 1250px){
        font-size: 1.5rem;
        margin: 0.5rem;
    }
    text-align: center;
}

.m-2-top{
    margin-top: 2rem;
}
.m-1-top{
    margin-top: 0.75rem;
}
.m-0-bot{
    margin-bottom: 0;
}
.m-1-bot{
    margin-bottom: 0.5rem;
}
.m-2-bot{
    margin-bottom: 0.75rem;
}
.m-3-bot{
    margin-bottom: 1rem;
}

.text-center{
    text-align: center;
}

.d-block{
    display: block;
}

.rounded{
    border-radius: 50%;
}

.border-beige{
    border: 3px solid #F5F5DC;
}

.d-flex-between{
    display: flex;
    justify-content: space-between;
}

.d-flex-around{
    display: flex;
    justify-content: space-around;
}

.gap-1{
    gap: 0.5rem;
}
.gap-2{
    gap: 0.75rem;
}
.gap-3{
    gap: 1rem;
}
.gap-4{
    gap: 1.25rem;
}
.gap-5{
    gap: 1.5rem;
}

.swiper-wrapper{
    width: 100%;
}

.swiper{
    width: 400px;
    height: 400px;
    @media screen and (max-width: 1350px){
        width: 350px;
        height: 350px;
    }
    @media screen and (max-width: 800px){
        width: 300px;
        height: 300px;
    }
    @media screen and (max-width: 400px){
        width: 250px;
        height: 250px;
    }
    @media screen and (max-width: 350px){
        max-width: 200px;
        max-height: 200px;
    }
}

.swiper-parent{
    padding: 1rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 2rem;
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.25);
}

.swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img{
    max-width: 400px;
    max-height: 400px;
    @media screen and (max-width: 1350px){
        max-width: 350px;
        max-height: 350px;
    }
    @media screen and (max-width: 800px){
        max-width: 300px;
        max-height: 300px;
    }
    @media screen and (max-width: 400px){
        max-width: 250px;
        max-height: 250px;
    }
    @media screen and (max-width: 350px){
        max-width: 200px;
        max-height: 200px;
    }
}

.swiper-button-next, .swiper-button-prev {
    color: #F5F5DC;
    &:hover{
        text-shadow: 0 0 6px #F5F5DC, 0 0 10px #F5F5DC;
    }
}
.swiper-pagination-bullet-active{
    background-color: #F5F5DC;
}

.m-x-1{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.m-x-2{
    margin-left: 1rem;
    margin-right: 1rem;
}
.m-x-3{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}
.m-x-4{
    margin-left: 2rem;
    margin-right: 2rem;
}
.m-x-5{
    margin-left: 3rem;
    margin-right: 3rem;
}
.mada{
    font-family: Mada, sans-serif;
}
.font-normal{
    font-size: 1.5rem;
    @media screen and (max-width: 1250px){
        font-size: 1rem;
    }
}
.hidden{
    display: none;
}
.pagination{
    text-align: center;
    margin-top: 1rem;
}
.pagination span{
    &:hover{
        text-shadow: 0 0 3px #F5F5DC, 0 0 5px #F5F5DC;
    }
    @media screen and (max-width: 1250px){
        margin: 0.1rem;
    }
}
.italic{
    font-family: Arial, sans-serif;
    font-style: italic;
}
