:root {
    --primary-color: #ED681A;
    --secondary-color: #046142;
    --gray-color: #5B5B5B;
    --heading-color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
a {
    font-family: "Fredoka", sans-serif;
}

body,
p {
    font-family: "Epilogue", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.login-wrapper {
    background: linear-gradient(135deg, #fff7f1, #fef3e6);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

.login-wrapper .login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 40px 35px;
    text-align: center;
}

.login-wrapper .login-card h2 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.login-wrapper .login-card p {
    color: var(--gray-color);
    margin-bottom: 25px;
    font-size: 15px;
}

.login-wrapper .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 15px;
}

.login-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(237, 104, 26, 0.25);
}

.login-wrapper .btn-login {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    transition: 0.3s;
}

.login-wrapper .btn-login:hover {
    background: var(--secondary-color);
}

.login-wrapper .login-footer {
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-color);
}

.login-wrapper .login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-wrapper .login-footer a:hover {
    color: var(--secondary-color);
}

.common-heading {
    font-family: 'Fredoka';
    font-weight: 600;
    font-size: 58px;
    line-height: 120%;
}

.second-common-heading {
    font-family: 'Fredoka';
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
}

.common-subheading {
    font-family: 'Epilogue';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #555555;
}

.common-section-space {
    padding: 90px 0;
}

.header {
    background: url('../img/home-header-bg.png') center/cover no-repeat;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    padding: 8px 16px;
    border: none;
}

.cart-btn {
    position: relative;
    color: var(--primary-color);
    background: none;
    border: none;
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: red;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Hero Section */
.hero-banner {
    position: relative;
    color: white;
}

.hero-banner .carousel-item {
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
}

.hero-banner .banner-heading {
    font-family: 'Fredoka';
    font-weight: 400;
    font-size: 60px;
    line-height: 125%;
    color: #161616;
}

.btn {
    padding: 12px 28px;
    font-family: 'Fredoka';
    font-weight: 600;
    font-size: 18px;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    border: none;
}


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

.hero-banner .carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-banner .carousel-indicators {
    bottom: 30px;
}


/* Special Card */
.hero-banner .special-card {
    position: absolute;
    bottom: 10%;
    right: 10%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 15px;
    width: 400px;
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #ED681A;
    border-radius: 30px;

}

.hero-banner .special-card .price-heading {
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
}

.hero-banner .special-card .special-name {
    font-family: 'Fredoka';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 37px;
}

.hero-banner .play-icon {
    height: 65px;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.hero-banner .special-badge {
    padding: 3px 8px;
    background-color: var(--primary-color);
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    margin: auto;
    font-family: 'Epilogue';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 23px;
}

/* Welcome Section */
.welcome-section h6 {
    color: var(--primary-color);
    letter-spacing: 1px;
}

.common-namespan {
    color: var(--primary-color);
    font-family: 'Fredoka';
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.perks-list li {
    font-family: 'Fredoka';
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: #555555;
    position: relative;
    margin-bottom: 15px;
    padding-left: 20px;
}

.perks-list li::before {
    content: url('../img/icons/check-symbol.svg');
    position: absolute;
    top: 4px;
    left: -10px;
}

.bestfood-outlets-section {
    background-color: #FFF9F3;
}

.bestfood-outlets-section .single-service-card .icon-wrapper {
    background-color: #FFF;
    height: 135px;
    width: 135px;
    border: 4px solid #FFD40D;
}

.bestfood-outlets-section .single-service-card .icon-wrapper::before {
    content: '';
    position: absolute;
    height: 120px;
    width: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFD40D;
    border-radius: 50%;
}

.bestfood-outlets-section .single-service-card .service-name {
    font-family: 'Fredoka';
    font-weight: 600;
    font-size: 26px;
    line-height: 150%;
}

.bestfood-outlets-section .serviceslider .swiper-button-next {
    content: url('../img/icons/slider-next-icons.svg') !important;
    background-image: none;
    right: 0;
    bottom: -12px;
    top: auto
}

.bestfood-outlets-section .serviceslider .swiper-button-prev {
    content: url('../img/icons/slider-prev-icons.svg') !important;
    background-image: none;
    right: 50px;
    bottom: -12px;
    left: auto;
    top: auto
}

.common-heading.with-after::after {
    position: absolute;
    content: '';
    position: absolute;
    width: 270px;
    height: 10px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -10px;
    border-radius: 10px;
    background-color: var(--primary-color);
}

.outlet-section .single-outlet-card {
    background: rgba(255, 255, 255, 0.002);
    box-shadow: 0px 0px 50px -13px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
}

.cuisines-section .single-outlet-card .cuisine-img {
    border-radius: 100px;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.single-testimonial-card {
    background: #FFF9F3;
    box-shadow: 0px 0px 50px -13px rgba(0, 0, 0, 0.18);
    border-radius: 30px;
    padding: 55px 35px 35px;
}

.single-testimonial-card .icon-circle {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 50px -13px rgba(0, 0, 0, 0.18);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}

.footer {
    background-image: url('../img/footer-bg.png');
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer .footer-heading {
    font-family: 'Fredoka';
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 150%;
    border-bottom: 4px solid var(--primary-color);
    display: inline-block;
}

.footer .footer-links li .single-footer-link {
    font-family: 'Epilogue';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000;
}

.footer .footer-links li .single-footer-link:hover {
    color: var(--primary-color);
}

.links-wrapper {
    border-bottom: 5px solid var(--primary-color);
    padding-bottom: 100px;
}

/* Responsive css starts here */

@media (max-width: 1199.98px) {

    .hero-banner .banner-heading,
    .common-heading {
        font-size: 45px;
    }
}


@media (max-width: 991.98px) {

    .hero-banner .banner-heading,
    .common-heading {
        font-size: 35px;
    }

    .common-subheading {
        font-size: 14px;
    }

    .common-heading.with-after::after {
        height: 5px;
    }

    .navbar-nav .nav-link {
        text-align: left;
    }
}


@media (max-width: 767.98px) {
    .hero-banner .special-card {
        bottom: 10px;
        right: 0%;
        padding: 10px;
        width: 300px;
    }
}


@media (max-width: 575.98px) {
    .hero-banner .carousel-item {
        height: 50vh;
    }

    .hero-banner .special-card {
        display: none;
    }

    .footer .footer-heading {
        font-size: 20px;
    }
}

@media (max-width: 479.98px) {}