@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Asap:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
}

:root {
    --primary: #007F00;
    --primary-light: rgba(0, 127, 0, 40%);
    --secondary: #58585A;
    --gray-light: #818285;
    --gray-dark: rgb(59 70 70);
    --white: #ffffff;
    --asap-font: 'Asap', sans-serif;
    --kanit: 'Kanit', sans-serif;
}

body {
    font-family: var(--asap-font);
}

/* ----------------------------common-css-------------------------- */
ul {
    text-decoration: none;
}

li {
    list-style: none;
}

p {
    margin: 0;
    padding: 0;
}

.section-space {
    padding: 25px;
}
.mr-15{
    margin-right: 15px;
}
/* -------------------------header-css------------------------- */

header {
    position: fixed;
    width: 100vw;
    height: 95px;
    top: 0;
    display: flex;
    justify-content: space-evenly;
    place-items: center;
    background: linear-gradient(45deg, var(--white) 0%, var(--primary) 95%);
    z-index: 2;
}

.logo {
    color: var(--white);
    font-size: 2.2em;
}

.logo img {
    width: 375px;
}

header nav button,
header nav a {
    background-color: transparent;
    border: 0;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.9em;
    cursor: pointer;
    transition-delay: 0s;
    transition-duration: 1s;
    text-decoration: none;
}

header nav button:hover,
header nav a:hover {
    transform: translate(0px, -4px);
}

.order-online a {
    text-decoration: none !important;
    color: inherit;
}

header nav span {
    color: var(--white);
}

.order-online {
    width: 125px;
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    border: 0;
    background: var(--primary);
    border: 1px solid var(--white);
    color: var(--white);
    cursor: pointer;
    transition: 0.6s;
}

.order-online:hover {
    background: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
    transform: translate(0px, -4px);
    box-shadow: 0 6px 6px rgba(0, 0, 0, .2);
}

.waves {
    transform: rotate(180deg) scale(1, 0.2);
    position: relative;
    width: 100%;
    height: 5vh;
    margin-bottom: -40px;
    min-height: 100px;
    max-height: 150px;
    margin-top: 35px;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 4s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 7s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 10s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 17s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}
/* ------------------------------welcome-section------------------- */
.form-content .btn {
    background: var(--primary);
    padding: 7px 30px;
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
    transition: 0.4s;
    border-radius: 50px;
}
.welcome-section {
    position: relative;
    background: linear-gradient( var(--white) 0%, var(--primary-light) 0%), url(../img/hero-image.jpg) center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 285px;
}
.welcome-section .col-6 {
    height: 285px;
    display: flex;
    align-items: center;
    padding: 0 60px;
}
.welcome-section .card {
    width: 480px;
    height: 222px;
    background: var(--white);
    border-bottom: 1px solid rgb(197 193 184 / 70%);
}

.welcome-section .section-text-title h3 {
    font-size: 25px;
    font-weight: 600;
}

.welcome-section .section-text-content {
    color: var(--primary);
}

.welcome-section .welcome-section-left {
    height: 100%;
    margin: 0;
    text-align: center;
    -ms-transform: translateY(-40%);
    transform: translateY(40%);
}

.welcome-section .welcome-section-left {
    color: var(--primary);
    top: 0;
}

.welcome-section .welcome-section-left span {
    color: var(--primary);
    width: 100%;
}

.welcome-section .welcome-section-left h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: var(--gray-dark);
}

.welcome-section .welcome-section-left .welcome-btn-content {
    margin-top: 30px;
}

.welcome-section .welcome-section-left .welcome-btn-content .btn-wel-book {
    margin-left: 15px;
}
/* --------------------------------------chefs-section-------------------------- */
.chefs-section .section-title-content {
    margin-top: 30px;
}

.chefs-section .section-title-content .section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
    text-align: center;
}

.chefs-section .chefs-img.img-fluid {
    width: 220px;
    height: auto;
    border: 4px solid var(--primary-light);
    border-radius: 50%;
}

.chefs-section .row {
    --bs-gutter-x: 1.5rem;
}

.chefs-section .col-xl-3.col-lg-4.col-md-6.col-sm-6 {
    margin-top: 10px;
}

.chefs-section .card {
    border: 0;
}

.chefs-img-content {
    text-align: center;
}

.chefs-section .chefs-img-details {
    color: var(--secondary);
    margin-top: 10px;
    padding: 0 36px;
}

.chefs-img-details p,
.chefs-section .chefs-img-details ul,
.chefs-img-details h3 {
    margin-bottom: 0;
}

.chefs-section .chefs-img-details h3 {
    font-weight: 600;
    font-size: 20px;
    color: var(--primary);
    font-family: "Poppins", sans-serif;
}

.chefs-section .chefs-img-details p {
    font-size: 15px;
}

.chefs-section .chefs-img-details ul li {
    display: inline-block;
}

.chefs-section .chefs-img-details ul li a i {
    font-size: 20px;
    padding-top: 10px;
    color: #fff;
    margin: 0 5px;
}

.chefs-section .chefs-btn {
    margin-top: 10px;
}

.chefs-section .chefs-btn-style {
    width: 96px;
    font-size: 13px;
    padding: 6px 0px;
    border-radius: 20px;
    text-transform: initial;
    color: var(--white);
    background-color: var(--primary);
}

.chefs-section .chefs-btn-style:hover {
    color: var(--primary);
    border: 1px solid var(--primary);
    background-color: var(--white);
}

/* ------------------------footer----------------------------- */
.waves-h {
    height: 40px;
}

.footer-border {
    padding: 30px 0;
    background: linear-gradient(6deg, var(--white) 0%, var(--primary) 55%);
    color: var(--secondary);
}

.footer-border p:last-child {
    margin-bottom: 0;
}

.footer-border .footer-copyright p {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-border img {
    width: 160px;
}

/* ----------------------------logo-link-------------------------------- */
.footer-link-border {
    border-top: 1px solid rgb(197 193 184 / 70%);
    padding: 20px 0;
    border-bottom: 1px solid rgb(197 193 184 / 70%);
}

.footer-link-border .footer-site-link .footer-site-link-icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.footer-link-border .footer-site-link .footer-site-link-icon li {
    margin: 0 8px;
}
/* ============================================================responsive-css================================================= */
/* ---------------------------------------------1200-------------------------------------- */
@media (max-width: 1250px) {
    .welcome-section .welcome-section-left h1 {
        font-size: 32px;
        line-height: 42px;
    }
}

/* -------------------------------------1024-------------------------------------------------------- */

@media (max-width: 1024px) {

    /* -----------------------------------------nav-section---------------- */
    .logo img {
        width: 250px;
    }

    header nav button {
        font-size: 12px;
    }

    .order-online {
        width: 138px;
        height: 41px;
        font-size: 15px;
    }
}

/* -------------------------------------992-------------------------------------------------------- */
@media (max-width: 992px) {

    /* -----------------------------------navbar-css--------------------------- */
    .logo img {
        width: 170px;
    }

    header nav button {
        font-size: 10px;
    }

    .order-online {
        width: 94px;
        height: 39px;
        font-size: 12px;
    }

    /* ------------------------------welcome-section----------------------------------------- */
    .welcome-section {
        height: 265px;
    }

    .welcome-section .col-6 {
        height: 265px;
        padding: 0;
    }

    .welcome-section .welcome-section-left h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .welcome-section .section-text-title h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .form-select {
        font-size: 13px;
    }

    .welcome-section .card {
        height: 210px;
    }


    /* -----------------------------------------footer-css------------------------ */
    .footer-border {
        padding: 18px 0;
    }

    /* ----------------------------footer-site-link-icon----------------------------- */
    .footer-site-link-icon img {
        width: 75px;
    }
}

/* -------------------------------------768-------------------------------------------------------- */

@media (max-width: 768px) {

    /* -------------------------------------------navbar-css--------------------- */
    header {
        height: 70px;
    }

    .waves {
        margin-top: 30px;
    }

    .logo img {
        width: 160px;
    }

    header nav button {
        font-size: 10px;
    }

    .order-online {
        width: 100px;
        height: 35px;
        font-size: 12px;
    }

    /* ----------------------------welcome-section------------------------ */
    .welcome-section {
        height: 235px;
    }

    .welcome-section .col-6 {
        height: 235px;
    }

    .welcome-section .welcome-section-left h1 {
        font-size: 24px;
        line-height: 37px;
    }

    .mb-4 {
        margin-bottom: 12px !important;
    }

    .form-content .btn {
        padding: 3px 20px;
        font-size: 13px;
        margin-top: 5px;
    }

    .welcome-section .card {
        height: 185px;
    }

    .form-select {
        font-size: 12px;
        padding: 4px;
    }

    .welcome-section .section-text-title h3 {
        font-size: 15px;
    }
    /* --------------------------------chefs-section----------------------- */
    .chefs-section .section-title-content .section-title {
        font-size: 25px;
        text-align: center;
        font-weight: 600;
    }

    /* -----------------------footer-section-------------------- */
    .footer-border .footer-copyright p {
        font-size: 12px;
    }

    /* ----------------------------footer-site-link-icon----------------------------- */
    .footer-site-link-icon img {
        width: 60px;
    }
}

/* -------------------------------------570-------------------------------------------------------- */

@media (max-width: 570px) {
    .section-space {
        padding: 30px;
    }

    /* ---------------------------------navbar-section--------------------- */
    header {
        justify-content: space-between;
    }

    nav {
        display: none;
    }

    .logo {
        margin-left: 5px;
    }

    .logo img {
        width: 180px;
    }

    .order-online {
        margin-right: 5px;
    }

    .waves {
        margin-top: 29px;
        min-height: 100px;
    }

    /* -----------------------------welcome-section--------------------- */
    .welcome-section .card {
        height: 200px;
    }

    .welcome-section .welcome-col {
        display: none;
    }

    .welcome-section .col-full {
        width: 95%;
        margin: 0 10px;
        text-align: center;
    }

    /* -----------------------------chefs-section----------------- */
    .chefs-section .section-title-content .section-title {
        font-size: 21px;
        text-align: center;
        margin-bottom: 0px;
        font-weight: 600;
    }
    /* ----------------------------footer-site-link-icon----------------------------- */
    .footer-site-link-icon img {
        width: 50px;
    }
}
/* ---------------------------------------480---------------------------------------- */
@media (max-width: 480px) {
    /* ------------------------------chefs-section------------------------------- */
    .chefs-section .section-title-content {
        margin-top: 0px;
    }
}