body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

a {
    text-decoration: none;
}

img.logo-img {
    width: 330px;
}

.navbar-logo {
    justify-content: center;
}

/* HERO */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url(../img/banner.webp);
    background-size: cover;
    background-position: center;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-title {
    font-size: 100px;
    font-weight: 700;
    font-style: italic;
    overflow: hidden;
    /* width: 75%; */
    /* padding: 5px; */
    margin-bottom: -30px;
}

.typing-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 3s steps(20, end) forwards;
}

/* Typing */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

p.hero-subtitle {
    font-size: 28px;
    /* font-style: italic; */
}

.hero .row {
    align-items: center;
}


/* SECOND SECTION */
.features {
    background: #f8f9fa;
    padding: 30px;

}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    display: flex;
    gap: 20px;
    align-items: center;
}

section.features a {
    color: black;
}

.feature-box img {
    width: 55px;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.features-box-width {
    width: 65%;
    margin-right: auto;
    margin-left: auto;
}

.feature-box p {
    margin-bottom: 0px;
    font-size: 15px;
}

.feature-box h5 {
    font-weight: 600;
    color: #ff6b00;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-img img {
    width: 550px;
    /* height: 550px; */
    object-fit: contain;
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.custom-footer {
    background: #f1f1f1;
    padding: 20px 0;
    font-size: 14px;
}

.footer-text {
    color: #888;
}

.footer-link {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: #ff6b00;
}

.divider {
    margin: 0 8px;
    color: #bbb;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-left: 8px;
    font-size: 16px;
    transition: 0.3s ease;
    color: white;
}

/* Individual Colors */
.instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
}

.facebook {
    background-color: #1877f2;
}

.twitter {
    background-color: #1da1f2;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;

}


a.a-text {
    color: #ff6b00;
}


/* menu section */

.category-bar {
    background: #FC8A06;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 30px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.category-bar a {
    padding: 6px 20px;
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight: 500;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.category-bar a:hover {
    color: #000;
}

.category-bar a.active {
    background: #1c1c2e;
    color: white;
}

/* Search */
.search-box input {
    border-radius: 30px;
    padding: 8px 20px;
}

.search-box .input-group-text {
    background-color: #1c1c2e;
    border: 1px solid #1c1c2e;
    border-radius: 30px;
    color: white;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}

/* Product card */
.menu-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.price-tag {
    background: #6ab04c;
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 14px;
}

.offers-header h3 {
    font-weight: 600;
}

.offers-nav {
    display: inline-flex;
    gap: 8px;
}

.offers-nav.is-hidden {
    display: none;
}

.offer-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #000;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.offer-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
}

.offer-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    /* box-shadow: none; */
    transform: none;
}

.offer-nav-btn .bi-chevron-right::before,
.offer-nav-btn .bi-chevron-left::before {
    font-weight: 600 !important;
}

.offers-viewport {
    overflow: hidden;
}

.offers-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.offer-item {
    flex: 0 0 calc(50% - 8px);
}

@media (max-width: 767px) {
    .offer-item {
        flex: 0 0 100%;
    }
}


/* Fixed Cart */
.cart-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.cart-items {
    max-height: 250px;
    overflow-y: auto;
}

.promo-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 240px;
}

.promo-content h5 {
    margin-top: 5px;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
}

.discount-badge {
    position: absolute;
    top: 0px;
    right: 15px;
    background: #0d1b2a;
    color: #fff;
    padding: 13px 10px;
    border-radius: 0px 0px 8px 8px;
    font-size: 14px;
    font-weight: 600;
}

.promo-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.promo-content small {
    color: #ff9900;
    font-weight: 600;
}

.offer-add-button {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #ffffff52;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px 0px 15px 0px;
}

.add-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0d1b2a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
}

.add-btn:hover {
    background: #ff6b00;
    transform: scale(1.1);
}