/* FONT FAMILY */

/* font-family: 'Baloo Bhai 2', cursive;
font-family: 'Bree Serif', serif;
font-family: 'Ubuntu', sans-serif; */

/* .animate__animated.animate__slideInLeft{
    --animate-duration: 2s;
} */

/* CSS RESET */

* {
    margin: 0px;
    padding: 0px;
}

html {
    scroll-behavior: smooth;
}

#self_logo {
    margin: 0px 11px;
    padding: 2px 8px;
}

#self_logo img {
    width: 55px;
    height: 55px;
    padding-top: 5px;
}

#navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* flex-wrap: wrap; */
    position: sticky;
    top: 0px;
    font-family: 'Baloo Bhai 2', cursive;
    z-index: 2;
}

#navbar::before {
    content: "";
    background-color: #796868fa;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.75;
}

.navigation_block {
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    margin-left: 40px;
}

.navigation_block li {
    list-style: none;
    display: block;
    font-size: 1.1rem;
}

.navigation_block li a {
    color: white;
    text-decoration: none;
    margin: 0px 12px;
    padding: 1px 15px;
    display: block;
    /* border: 2px solid red; */
    border-radius: 12px;
}

.navigation_block li a:hover {
    color: black;
    background-color: whitesmoke;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}

/* HOME SECTION */

#home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 194px;
    height: 550px;
    /* border: 2px solid black; */
}

#home::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    background: url('../bg_images/food.jpg') no-repeat center center/cover;
    width: 100%;
    height: 642px;
    z-index: -1;
    opacity: 0.78;
}

#home>.btn {
    margin: 15px 0px;
    padding: 7px 9px;
    animation-name: buttonAnimation;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes buttonAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

#home h1 {
    color: #e7f5f7;
    margin-bottom: 5px;
}

#home p {
    color: white;
}

/* SERVICES SECTION */

#service_container {
    margin: 0px 0px;
    /* border: 2px solid brown; */
    /* position: relative; */
    /* height: 405px; */
}

#services {
    display: flex;
    margin: 0px 16%;
    flex-direction: row;
    /* flex-wrap: wrap; */
}

#services .box img {
    width: 160px;
    height: 160px;
    display: block;
    margin: 0px auto;
    padding: 8px 0px;
}

.box {
    border: 3.2px solid #d616167a;
    border-radius: 20px;
    padding: 16px 26px;
    margin: 19px 17px;
    background-color: #f3978545;
}

.box:hover {
    transform: scale(1.03);
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    background-color: #b4b98287;
}

/* CLIENTS SECTION */

#client-section {
    /* height: 400px; */
    /* border: 3px solid violet; */
    position: relative;
}

#clients {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid red; */
}

.client-item {
    margin: 48px 40px;
    padding: 24px 24px;
}

.client-item img {
    width: 100px;
    height: 100px;
    /* border: 3px solid black; */
}

.client-item img:hover {
    transform: scale(1.1);
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
}

#client-section::before {
    content: "";
    position: absolute;
    background: url('../bg_images/handshake.jpg') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.55;
}

/* CONTACT SECTION */

#contact-section {
    /* border: 2px solid mediumvioletred; */
    position: relative;
    /* height: 520px; */
}

#contact-section::before {
    content: "";
    background: url("../bg_images/contact.jpg") no-repeat center center/cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    opacity: 0.86;
}

#contact-section h1 {
    color: whitesmoke;
}

#contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 34px;
    margin: 5px 0px;
}

#contact-box form {
    width: 35%;
    margin: 25px 0px;
}

.form-elements {
    padding: 0px 4px;
}

.form-elements input, .form-elements textarea {
    text-align: center;
    font-family: 'Baloo Bhai 2', cursive;
    font-size: 1.1rem;
    margin: 5px 4px;
    padding: 4px 8px;
    width: 100%;
    border: 2px solid gray;
    border-radius: 10px;
}

.form-elements label {
    color: whitesmoke;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    margin: 0px 7px;
}

/* KITCHEN CONTACT */

footer h3 {
    padding: 2px;
}

.kitchen-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3px 30px;
}

.kitchen-contact li {
    list-style: none;
    font-size: 1.1rem;
    display: block;
    margin: 7px 1px;
}

.kitchen-contact li a {
    text-decoration: none;
    /* font-family: 'Baloo Bhai 2', cursive; */
    padding: 7px 9px;
    background-color: gray;
    margin: 0px 13px;
    border-radius: 13px;
    color: white;
}

.kitchen-contact li a:hover {
    background-color: white;
    border: 3px solid gray;
    color: black;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}

/* UTILITY CLASS */

.h-primary {
    font-size: 2.5rem;
    padding: 14px;
    font-family: 'Ubuntu', sans-serif;
}

.h-secondary {
    font-size: 1.8rem;
    font-family: 'Bree Serif', serif;
}

.p-primary {
    font-size: 1.3rem;
    font-family: 'Ubuntu', sans-serif;
}

.p-secondary {
    font-size: 1.05rem;
    font-family: 'Ubuntu', sans-serif;
}

.btn {
    padding: 4px 12px;
    margin: 12px;
    background: #d69f24d1;
    color: whitesmoke;
    border: 4px solid #77605ff0;
    border-radius: 10px;
    font-size: 1.2rem;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
}

/* .btn:hover{
    transform: scale(1.05);
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
} */

.center {
    text-align: center;
}
