/* main.css */
/* HERO */
.hero {
    background: black;
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.hero .hero-image {
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    filter: brightness(40%) blur(4px);
}

.hero .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero .hero-text h1 {
    font-size: 5em;
    margin-bottom: -0.8rem;
}

.hero .hero-text p {
    letter-spacing: 0.04rem;
    word-spacing: 0.6rem;
    font-size: 1.2rem;
    margin-bottom: 1.4rem;
    color: var(--text-light);
}

.hero .hero-text a {
    border: none;
    background: var(--hero-link);
    color: var(--footer-text);
    padding: 0.6rem 2.4rem;
    font-size: 1.2rem;
}

/* ABOUT US */
.about-us {
    background: var(--section-bg-lighter);
    display: flex;
    justify-content: center;
    padding: 6rem 0rem;
}

.about-us .wrapper {
    width: 80%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.about-us .wrapper h1 {
    font-size: 3.6rem;
    margin-bottom: 1rem;
}

.about-us .wrapper p {
    font-size: 1.4rem;
}

/* FEATURED DISHES */
.featured-dishes {
    width: 100%;
    background: repeating-linear-gradient(
        45deg,
        var(--featured-dishes-color),
        var(--featured-dishes-color) 10px,
        var(--featured-dishes-light) 10px,
        var(--featured-dishes-light) 20px
    );
}

.featured-dishes .wrapper {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 0rem 2rem;
    flex-wrap: wrap;
}

.featured-dishes .wrapper .container {
    width: 24%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 0.4rem;
    margin-bottom: 1rem;
}

.featured-dishes .wrapper .container img {
    border-radius: 0.2rem;
    width: 100%;
    height: 30vh;
    object-fit: cover;
    object-position: center;
}

.featured-dishes .wrapper .container #info {
    height: min-content;
    padding: 1.8rem 1.4rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.featured-dishes .wrapper .container #info h1 {
    font-size: 1.8rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .featured-dishes .wrapper .container {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .featured-dishes .wrapper .container {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .featured-dishes .wrapper .container {
        width: 100%;
    }

    .featured-dishes .wrapper .container #info h1 {
        font-size: 1.5rem;
    }
}


/* STAFF */
.staff .wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 2rem;
    gap: 2rem;
}

.staff .wrapper .container {
    width: 30%;
    height: auto;
    border-radius: 0.6rem;
    display: flex;
    flex-direction: column;
}

.staff .wrapper .container img {
    width: 100%;
    height: auto;
    border-top-left-radius: 0.6rem;
    border-top-right-radius: 0.6rem;
}

.staff .wrapper .container #text {
    padding: 1rem;
    border-bottom-left-radius: 0.4rem;
    border-bottom-right-radius: 0.4rem;
    background: var(--section-bg-gray);
    flex-grow: 1;
}

.staff .wrapper .container h2 {
    padding-top: 0.4rem;
    font-size: 1.8rem;
}

@media (max-width: 1024px) {
    .staff .wrapper .container {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .staff .wrapper .container {
        margin-bottom: 2rem;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .staff .wrapper .container {
        width: 100%;
    }

    .staff .wrapper .container h2 {
        font-size: 1.5rem;
    }
}

/* TESTIMONIALS */
.testimonials {
    background: var(--section-bg-gray);
}

.testimonials .wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.testimonials .slider {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.testimonials .wrapper,
.testimonials .tns-outer {
    max-width: 100%;
}

.testimonials .slider .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonials .slider #text {
    display: flex;
    justify-content: center;
}

.testimonials .slider #text p {
    width: 50%;
}

.testimonials .slider .inner img {
    width: 4rem;
    height: auto;
}

@media (max-width: 1024px) {
    .testimonials .slider #text p {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .testimonials .slider #text p {
        width: 75%;
    }
}

@media (max-width: 480px) {
    .testimonials .slider #text p {
        width: 100%;
    }
}