:root {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body{
    width: 100%;
    height: 100%;

    max-width: 100dvw;

    margin: 0%;
    padding: 0%;

    background-color: black;
    color: whitesmoke;
}

a {
    text-decoration: none;
    color: whitesmoke;
}

li {
    cursor: pointer;
}

.titleDiv{
    margin: 0px;
    width: 100%;
    height: fit-content;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.titleDiv > h2 {
    text-align: left;
    font-size: x-large;
    margin-left: 1rem;
    height: 10dvh;
}

.titles {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
}

.logo > img{
    max-width: 48px;
    max-height: 48px;
}

.strive > img {
    max-width: 96px;
    max-height: 96px;
}

.abDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
}

button{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
}

.logob > img {
    max-width: 128px;
    max-height: 128px;
}

.socials{
    margin-right: 1rem;
}

.links{
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 1rem;
    justify-content: space-evenly;
    list-style: none;
}

.links > * {
    border-radius: 5px;
}

.headerDiv {
    width: 100%;
    height: 90vh;

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    font-size: xx-large;
}

.headerComment {
    position: absolute;
    max-width: 80%;
    font-size: 3rem;
}

.headerImg{
    width: 100%;
    height: 100%;

    object-fit: cover;
    filter: brightness(25%) blur(5px) ;
}

.aboutDiv {
    width: 100%;
    min-height: 100vh;

    padding-block: 20px;

    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: black;
    color: whitesmoke;
}

.big{
    font-size: 4rem;
}

.small {
    font-size: 2rem;
}

.image {
    width: 35%;
    height: 70%;
}

.image > img{
    width: 100%;
    width: 100%;
    aspect-ratio: 1/1.2;
    object-fit: cover;
    border-radius: 8px;

    box-shadow: 0px 0px 10px rgba(255,255,255, 0.7);
}

.aboutContent {
    width: 35%;

    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: center;
}

.aboutContent > p, .aboutContent > h1{
    width: 90%;
    text-align: left;
}

.locationDiv{
    width: 100%;
    height: auto;
    padding-bottom: 4rem;

    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
    align-items: center;

    background-color: whitesmoke;
    color: black;
}

.scheduleDiv{
    width: 100%;
    height: 100dvh;

    padding-block: 30px;

    text-align: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;

    background-color: black;
    color: whitesmoke;
}

.line {
    height: 2px;
    width: 90%;
    background-color: goldenrod;
}

.outline {
    width: 30%;
    height: 90%;

    padding: 20px;

    border: 2px solid whitesmoke;
    border-radius: 8px;
}

.services, .schedules {
    height: 100%;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: start;
    flex-flow: column nowrap;

    border: 2px solid goldenrod;
    border-radius: 8px;
}

.schedules > h3 {
    max-width: 85%;
}

.bookDiv{
    width: 100%;
    height: 100vh;

    text-align: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;

    background-color: whitesmoke;
    color: black;
}

.bookDiv > img{
    height: 80%;
    border-radius: 8px;
}

.bookDiv > div {
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 20px;
}

.reserve {
    padding: 0.5rem;
    border: none;
    border-radius: 1rem;
    color: black;
    font-size: 1.2rem;
    font-weight: bolder;
    transform: translateY(-5%);
    filter: drop-shadow(2px 4px goldenrod);
    background-color: gold;

    transition: all 0.1s ease-in-out;
}

.reserve > .logo > img{
    max-width: 32px;
    max-height: 32px;
    padding: 4px 0px 0px 0px;
}

.reserve:hover {
    transform: translateY(0%);
    filter: drop-shadow(2px 2px goldenrod);
}

.bookDiv > .images{
    height: 90%;
    width: 45%;
    max-width: 45%;

    overflow-y: scroll;
    overflow-x: hidden;

    display: block;
}

.frame {
    height: 100%;
    width: 100%;

    box-shadow: 0px 0px 10px rgba(0,0,0, 0.7) ;

    object-fit: cover;

    border-radius: 8px;
}

.worksDiv {
    width: 100%;
    height: auto;

    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    justify-content: center;
    align-items: center;

    background-color: whitesmoke;
    color: black;
}

.worksDiv > h1 {
    max-height: 35%;
}

.hCarrusel {
    width: 40%;
}

.hCarrusel > img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

footer {
    height: 25vh;
    width: 100%;
    background-color: black;
    color: whitesmoke;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
}

.copyRight {
    position: absolute;
    bottom: 0%;

    align-self: center;
    width: auto;

    font-size: smaller;
}

@media (max-width: 600px) {
    .bookDiv{
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
    }

    .app {
        flex-shrink: 10;
    }

    .frame {
        min-height: 55%;
    }
    .aboutDiv {
        flex-flow: column nowrap;
    }

    .aboutDiv > * {
        width: 95%;
        height: 45%;
    }

    .aboutContent {
        width: 95%;
    }

    .aboutContent > * {
        text-align: center;
    }

    .image > img {
        aspect-ratio: 2/1;
    }


    .bookDiv > .images{
        height: 50%;
        width: 90%;
    }

    .image > img {
        aspect-ratio: 1/1.2;
    }
}

@media (max-width: 900px) {
    .aboutContent > p {
        width: 90%;
    }
}

@media (max-width: 820px) {
    .scheduleDiv {
        width: 100%;
        overflow: hidden;

        flex-flow: column nowrap;
        gap: 20px;
        height: auto;
    }

    .outline {
        width: 90%;
        height: 45%;
    }
}

@media (max-width: 800px) {
    .image > img {
        aspect-ratio: 1/1.2;
    }

    .hCarrusel {
        width: 70%;
    }
}

@media (max-width: 400px) {
    .bookDiv {
        width: 100%;
        height: 100vh;
    }

    .bookDiv > .images{
        width:100%;
        min-width: 90%;
        height: 45%;
        max-height: 45%;
        flex-flow: column nowrap;
    }

    .bookDiv > .images > img {
        object-fit: cover;
        aspect-ratio: 1/1;
    }
}

@media (max-width: 370px) {
    
    .titleDiv > h2{
        text-align: center;
    }
}

@media (max-width: 430px) {
    .titleDiv {
        flex-flow: column nowrap;
    }

    .headerComment {
        font-size: 2.5rem;
    }

    footer > h2 {
        width: auto;
        font-size: 1rem;
    }
}

.hidden {
    opacity: 0;
    filter: blur(25px);

    transition: all 0.8s ease-in-out;
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}

.show {
    opacity: 1;
    filter: blur(0px);
}