/* Improting google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --white-color: #fff;
    --dark-color: #252520;
    --primary-color: #3b141c;
    --secondary-color: #f3961c;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;

    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;
}

/* Source code */
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
}

img {
    width: 100%;
}

.section__content {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 12px;
}

/* Header start */
header {
    background: var(--primary-color);
    position: fixed;
    width: 100%;
    z-index: 5;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.nav :where(#menu-close-button, #menu-open-button) {
    display: none;
}

.nav__logo {
   width: 60px;
   object-fit: cover;
}

.nav__list {
    display: flex;
    gap: 10px;
}

.nav__link {
    color: var(--white-color);
    padding: 10px 18px;
    border-radius: var(--border-radius-m);
    font-size: var(--font-size-m);
    transition: 0.3s ease;
}

.nav__link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* hero section start */
.hero__section {
    background: #ccc;
    min-height: 100vh;
}

.hero__section .section__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-color);
    min-height: 100vh;
    gap: 30px;
}

.hero__title {
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
}

.hero__subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.hero__text {
    max-width: 600px;
    width: 100%;
    margin: 24px 0 40px;
    font-size: var(--font-size-m);
    text-align: justify;
}

.hero__buttons {
    display: flex;
    gap: 23px;
}

.button {
    padding: 10px 26px;
    color: var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-semibold);
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.button:hover {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}

.hero__img {
    max-width: 1000px;
    width: 100%;
    margin-right: 30px;
    border-radius: var(--border-radius-m);
}

/* About Us section start */
.about__title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.about__title::after {
    content: '';
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

/* Menu section start */
.menu__section {
    color: var(--white-color);
    background: var(--dark-color);
    padding: 50px 0 100px;
}

.menu__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 110px;
    justify-content: space-between;
}

.menu__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: calc(100% / 3 - 110px);
    justify-content: space-between;
}

.menu__image {
    max-width: 83%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: var(--border-radius-circle);
}

.menu__title {
    margin: 12px 0;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
    text-align: center;
}

.menu__text {
    font-size: var(--font-size-m);
    text-align: center;
}

/* Testimonials section start */
.testimonials__section {
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.testimonial {
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px;
}

.testimonial__img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
    margin-bottom: 50px;
}

.testimonials__title {
    margin-bottom: 16px;
    font-size: var(--font-size-m);
}

.testimonials__feedback {
    line-height: 25px;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondary-color)
}

.swiper-slide-button {
    margin-top: -50px;
    color: var(--secondary-color);
    transition: 0.3s ease;
}

.swiper-slide-button:hover {
    color: var(--primary-color);
}

.slider__wrapper {
    overflow: hidden;
    margin: 0 60px 50px;
}

/* Gallery section start */
.gallery__section {
    padding: 50px 0 100px;
}

.gallery__list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.gallery__item {
    width: calc(100% / 3 - 32px);
    overflow: hidden;
    border-radius: var(--border-radius-s);
}

.gallery__img {
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    transition: .3s ease;
}

.gallery__item:hover .gallery__img {
    transform: scale(1.3);
}

/* Contact section start */
.contact__section {
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.contact__section .section__content {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: space-between;
}

.contact__item {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.contact__item i {
    font-size: var(--font-size-m);
}

.contact__form {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.form__input {
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    background: var(--white-color);
    border-radius: var(--border-radius-s);
    border: 1px solid var(--medium-gray-color);
}

.form__input:focus {
    border-color: var(--secondary-color);
}

textarea.form__input {
    height: 100px;
    padding: 12px;
    resize: vertical;
}

.form__btn {
    background: var(--primary-color);
    padding: 10px 26px;
    margin-top: 10px;
    color: var(--white-color);
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius-m);
    font-size: var(--font-size-m);
    border: 1px solid var(--primary-color);
    transition: .3s ease;
}

.form__btn:hover {
    background: transparent;
    color: var(--primary-color);
}

/* Footer start */
.footer {
    padding: 20px 0;
    background: var(--dark-color);
}

.footer .section__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer :where(.footer__text, .social__link, .footer__text-link) {
    color: var(--white-color);
}

.social__link-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.social__link {
    font-weight: 700;
}

.social__link span{
    font-size: 12px;
    font-weight: 400;
}

.footer__text {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 350px;
}

.footer__text-link {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 12px;
}



