body {
    margin: 0;
    width: 100%;
    overflow-x: clip;
}

#top-bar {
    background-color: transparent;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    backdrop-filter: blur(30px);
    z-index: 10000;
    box-shadow: 0px 0px 5px 1px #000;
    justify-content: center;
    align-items: center;
}

div, p, a {
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 750;
}

a {
    cursor: pointer;
    text-decoration: none;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 20px;
    font-weight: 750;
    color: #222;
    display: inline-block;
    position: relative;
}

a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #222;
  transform-origin: bottom center;
  transition: transform 0.25s ease-out;
}

a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}

#top-title {
    user-select: none;
    margin: auto;
    font-size: 10vw;
    color: #c55;
}

.section {
    width: 100%;
    height: 100vh;
}

#section1 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}
#title-banner {
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
}

#c-imgs {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    gap: 0;
    display: flex;
    animation: scrolling 15s linear infinite;
    will-change: transform;
}

.c-img {
    width: 25%;
    height: 100%;
    object-fit: cover;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrolling-negative {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes scrolling-but-weird {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

h1 {
    width: 100%;
    text-align: center;
    color: #c55;
}

h2 {
    width: 100%;
    text-align: center;
    color: #c55;
}

#who-para {
    font-weight: 100;
    text-align: center;
    width: 100%;
    font-size: 1.5vw;
}

#section2 {
    display: grid;
    grid-template-rows: 1fr 1fr;
    flex-wrap: wrap;
    height: 100vh;
}

#sec2left {
    width: 30%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#sec2part2 {
    position: relative;
    width: 100%;
    flex-grow: 1;
    margin-top: 20px;
    background: linear-gradient(100deg, #fff 30%, rgba(0,0,0,0) 30%);
}

#locimg {
    position: absolute;
    top: 0;
    left:20%;
    z-index: -10;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review {
    width: calc(16.67% - 20px);
    text-align: center;
    height: min-content;
    flex-shrink: 0;
    background-color: #222;
    border-radius: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-right: 20px;
    box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.5);
}

p {
    margin: 0;
}

#section3 {
    height: 50vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#reviews-c {
    display: flex;
    animation: scrolling-negative 40s linear infinite;
    will-change: transform;
}

#reviews-c:hover {
    animation-play-state: paused;
}

#images-c {
    display: flex;
    animation: scrolling-but-weird 40s linear infinite;
    will-change: transform;
}

#images-c:hover {
    animation-play-state: paused;
}

.review p {
    font-weight: 100;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1vw;
}

#section3 {
    padding-bottom: 100px;
    padding-top: 50px;
    height: min-content;
}

#who-title {
    font-size: 2vw;
}

#who-para-wrapper {
    width:50%;
    display: flex;
    justify-content: center;
}

#saying-title {
    font-size: 2vw;
}

#loc-head {
    font-size: 2vw;
}

.hours {
    text-align: center;
    margin-top: 0;
    font-size: 1.5vw;
}

#contact-bg {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image {
    width: 20vw;
    height: auto;
    margin-right: 20px;
    border-radius: 20px;
    box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.5);
}

#about-header {
    width: 90%;
    margin-left: 5%;
    margin-top: 100px;
    border-radius: 20px;
    box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.5);
}

#images-c-super {
    width: max-content;
}

#section4 {
    height: min-content;
    padding-bottom: 200px;
}

#story-header {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
}

#story {
    width: 50%;
    font-size: 30px;
    text-align: center;
}

@media (width <= 1000px) {
    #story {
        width: 75%;
        font-size: 20px;
    }

    .image {
        width: 20vh;
        height: auto;
        margin-right: 20px;
        border-radius: 20px;
        box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.5);
    }

    #section2 {
        height: 150vh;
    }

    #sec2part2 {
        background: linear-gradient(100deg, #fff 50%, rgba(0,0,0,0) 50%);
    }

    #sec2left {
        margin-left: 20px;
        width: 40%;
    }
    #reviews-c {
        animation: none;
        overflow-x: scroll;
    }

    #reviews-c::-webkit-scrollbar {
        display: none;
    }

    #images-c-super {
        width: 100%;
    }

    #images-c {
        animation: none;
        overflow-x: scroll;
    }

    #images-c::-webkit-scrollbar {
        display: none;
    }

    .review {
        width: calc(75%);
        text-align: center;
        height: min-content;
        flex-shrink: 0;
        background-color: #222;
        border-radius: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-right: 20px;
        box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.5);
    }

    .review p {
        font-size: 1.5vh;
    }

    #who-para {
        font-size: 2vh;
    }

    #who-title {
        font-size: 4vh;
    }

    #who-para-wrapper {
        width:75%;
        display: flex;
        justify-content: center;
    }

    .saying-title {
        font-size: 3vh;
    }

    #loc-head {
        font-size: 3vh;
    }

    .hours {
        font-size: 2vh;
    }
}