/* Home Section */
.home {
    background-color: var(--color-white);
    width: 100%;
}

.home .home-container {
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
    position: relative;
}

.home img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.home .home-copy {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 10px;
}

.home h1 {
    color: var(--color-white);
    font-size: 96px;
    line-height: 110px;
}

.home p {
    color: var(--color-white);
    font-family: 'Manrope';
    font-size: 32px;
}

.home .button {
    background-color: var(--primary-color);
    border: 0;
    padding: 10px 20px;
    color: var(--color-white);
    font-size: 18px;
    cursor: pointer;
    transition: .3s ease;
}

.home .button:hover {
    color: var(--active-color);
}

/* About Section */
.about {
    max-width: 1140px;
    height: auto;
    margin: 0 auto;
}

.about .about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 120px 40px;
}

.about .about-copy {
    margin-right: 30px;
}

.about h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    color: var(--primary-color);
    font-weight: normal;
}

.about hr {
    width: 200px;
    margin: 10px 0;
    height: 2px;
    background-color: var(--primary-color);
    border: 0;
}

.about h2 {
    font-size: 48px;
    font-family: Canela;
    padding: 30px 0;
    line-height: 56px;
}

.about p {
    font-family: Manrope;
    font-size: 18px;
}

.about b {
    font-weight: bold;
}

.about img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1 / 1;
}

/* Responesive to tablet */
@media (max-width: 768px) {
    .home h1 {
        font-size: 60px;
        line-height: 70px;
    }

    .home p {
        font-size: 21px;
    }

    .home .button {
        font-size: 14px;
    }

    .about .about-container {
        display: block;
        margin: 60px 40px;
    }

    .about h1 {
        font-size: 21px;
    }

    .about h2 {
        font-size: 36px;
        line-height: 46px;
    }

    .about p {
        font-size: 16px;
    }

    .about img {
        padding-top: 30px;
    }
}

/* Responesive to mobile */
@media (max-width: 480px) {
    .home h1 {
        font-size: 36px;
        line-height: 40px;
    }

    .home p {
        font-size: 12px;
    }

    .home .button {
        font-size: 10px;
    }

    .about .about-container {
        display: block;
        margin: 60px 40px;
    }

    .about .about-copy {
        margin-right: 0;
    }

    .about h1 {
        font-size: 21px;
    }

    .about h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .about p {
        font-size: 12px;
    }
}


/* Menu Slider Section */
.menu {
    background-color: var(--color-white);
}

.wrapper {
    max-width: 1100px;
    width: 100%;
    text-align: left;
    padding: 0 35px;
    padding-top: 60px;
    margin: 0 auto;
}

.wrapper .menu-title {
    text-align: center;

}

.wrapper .menu-title h2 {
    font-family: 'Manrope';
    font-weight: 400;
    font-size: 24px;
    color: var(--primary-color);
}

.wrapper .menu-title h1 {
    font-size: 48px;
    font-size: 36px;
    font-family: 'Canela';
    font-weight: normal;
    padding: 30px;
}

.wrapper .menu-title hr {
    margin: 0 auto;
    width: 200px;
    margin: 10px auto;
    height: 2px;
    background-color: var(--primary-color);
    border: 0;
}

.wrapper .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 16px;
    overflow: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.wrapper .arrow-btn button {
    margin: 36px;
    font-size: 36px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: 0.3s ease;
}

.wrapper .arrow-btn button:hover {
    background-color: var(--primary-color);
    color: var(--active-color);
}

.carousel :where(.card, .img) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel.dragging .card {
    cursor: grab;
    user-select: none;
}

.carousel .card {
    scroll-snap-align: start;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card {
    background-color: rgb(212, 158, 93);
}

.card .img {
    width: 100%;
}

.card .img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card .title {
    width: 100%;
    padding: 30px;
}

.card h2 {
    font-size: 24px;
}

.carousel .card .pric-contact {
    width: 100%;
    padding: 0px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.carousel .card .pric-contact h1 {
    font-family: 'manrope';
    font-size: 24px;
    font-weight: 700;
}

.carousel .card .pric-contact button {
    font-size: 16px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.carousel .card .pric-contact .info {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    transition: 0.3s ease;
    color: black;
    text-decoration: none;
}

.carousel .card .pric-contact .info:hover {
    color: white;
}

.carousel .card .pric-contact .info .material-symbols-outlined {
    font-size: 24px;
    font-weight: 600;
}

.wrapper .arrow-btn {
    display: flex;
    justify-content: center;
    padding-bottom: 60px;
}

.wrapper .arrow-btn button {
    display: flex;
    justify-content: center;
    color: var(--primary-color);
}

@media screen and (max-width: 900px) {
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width: 600px) {
    .wrapper .carousel {
        grid-auto-columns: 100%;
    }
}