/* Onest Font */
@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* Abril Fatface Font */
@font-face {
    font-family: 'Abril Fatface';
    src: url('../fonts/AbrilFatface-Regular.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* Teko Font */
@font-face {
    font-family: 'Teko';
    src: url('../fonts/Teko-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* Inter Font */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/*======================== NAVBAR =======================*/

.navbar-custom {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    border-radius: 110px;
    padding: 10px 50px;
}

.navbar-nav .nav-link {
    color: white;

}

/* =============================== HERO SECTION ==============================*/

.hero-section {
    color: white;
    text-align: left;
    padding: 5vw 0;
    /* height: 100vh; */
    display: flex;
}

.underline-text {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.underline-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.2em;
    width: 100%;
    height: clamp(13px, 6px, 12px);
    background-color: rgba(0, 94, 247, 1);
    z-index: -1;
}


.card-img {
    /* height: 120vh; */
    object-fit: cover;
    border-radius: 0 0 50px 50px;
}

/* =====================MEDIA QUERIES ==================== */
@media (max-width: 768px) {
    .logo {
        height: 60px;
    }


}

@media (min-width: 720px) and (max-width: 1024px) {

    .logo {
        height: 80px;
    }

}

@media (min-width: 1800px) {
    .hero-section {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .logo {
        height: 180px;
    }


}

.buy-now-3 {
    border-radius: 75px;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    padding: 12px 40px;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-style: solid;
    background: rgba(0, 94, 247, 1);
    color: white;
    border-right: 4px solid black;
    border-bottom: 4px solid black;
}

.buy-now-3:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

/* =============ABOUT UMAMI=============*/
.image-container {
    position: relative;
    display: inline-block;
}

.image-container::before {
    content: "";
    position: absolute;
    left: -20px;
    bottom: -20px;
    width: 100%;
    height: 100%;
    background: rgba(0, 94, 247, 1);
    border-radius: 20px;
    z-index: -1;
}

.custom-img {
    width: 100%;
    border-radius: 20px;
}

/*=============== CERTIFICATIN CARDS========== */

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: blue;
    margin-bottom: 10px;
}

.feature-title {
    font-weight: bold;
}


/* ===============OUR PURPOSE=============*/

.custom-section {
    background: #f2f2fc;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    padding-top: 50px !important;
    margin-left: 1px !important;
    margin-right: 1px !important;

}

.custom-text-box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.image-box {
    position: relative;
    display: inline-block;
}

.image-box::before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100%;
    height: 100%;
    background: rgba(0, 94, 247, 1);
    border-radius: 20px;
    z-index: -1;
}

.custom-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* ===================PRODUCTS PHOTO======================== */

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.buy-now-3 {
    border-radius: 75px;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    padding: 12px 40px;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-style: solid;
    background: rgba(0, 94, 247, 1);
    color: white;
    border-right: 4px solid black;
    border-bottom: 4px solid black;
}

.buy-now-3:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

/* ===================== VIDEO ======================*/
#heading {
    margin-top: 100px !important;
    margin-bottom: 60px;
}

.yellow-underline {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 0 5px;
    white-space: nowrap;
}

.yellow-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 20px;
    background-color: #F5E901;
    z-index: -1;
}

/* Tablet View */
@media (max-width: 768px) {
    /* .yellow-underline {
    font-size: 80%;
} */

    .yellow-underline::after {
        height: 15px;
    }
}

@media (max-width: 480px) {
    /* .yellow-underline {
    background: none !important;
    font-size: 28px;
    white-space: normal;
    text-align: center;
} */

    .yellow-underline::after {
        height: 10px;
    }

    .video-heading {
        font-size: 30px !important;

    }
}

.video-container {
    position: relative;
    width: 100%;

    margin: auto;
}

.video-thumbnail {
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: orange;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.video-player {
    display: none;
    width: 100%;
    height: 100%;
}

@media (max-width: 425px) {
    .video-thumbnail {
        height: 100vw;
        object-fit: cover;
    }
}

/*================================= MIGHT_RECIPE ===========================*/

.custom-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.custom-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    border-radius: 20px;
}

.custom-card:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.overlay i {
    font-size: 18px;
    transform: rotate(45deg);
}

/*================== FONT STYLES MOVED FROM INLINE CSS ==================*/

.navbar-nav {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;
}

.hero-title {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 10vw, 111px);
    line-height: 99%;
    letter-spacing: -2%;
}

.hero-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 22px);
    line-height: 100%;
    letter-spacing: -2%;
}

.umami-title {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 7vw, 85px);
    line-height: 73%;
    letter-spacing: 0%;
    text-transform: capitalize;
}

.umami-text {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 164%;
    letter-spacing: 2%;
}

.video-heading {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 7vw, 85px);
    line-height: 73%;
    letter-spacing: 0%;
    text-transform: capitalize;
    text-align: center;
    margin-top: 100px !important;
}

.recipe-title {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 7vw, 85px);
    line-height: 73%;
    letter-spacing: 0%;
    text-transform: capitalize;
    text-align: center;

}

.buy-now-2 {
    border-radius: 75px;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    padding: 12px 40px;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-style: solid;
    background: rgba(255, 255, 255, 1);
    color: rgba(35, 68, 63, 1);
    border-right: 4px solid rgba(9, 17, 16, 1);
    border-bottom: 4px solid rgba(9, 17, 16, 1);
}

.buy-now-2:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}



/* By arbab */

/* Header */

.navbar-nav .active a {
    color: #005EF7;
}

.card-img-overlay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about_sec .row {
    display: flex;
    align-items: center;
}

.about_sec .row h2.umami-title {
    width: 80%;
    margin-bottom: 27px;
}

.about_sec .row p {
    color: #2F2F2F;
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 164.5%;
    /* 29.61px */
    letter-spacing: 0.36px;
}

/* Responsive */

@media screen and (max-width:1024px) {}

@media screen and (max-width:820px) {}

@media screen and (max-width:768px) {}

@media screen and (max-width:600px) {
    .card-img {
        height: 330px;
    }
}