@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
    margin: 0;
    font-family: "Ubuntu", sans-serif;
}



/* Loading Screen */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    transition: opacity 0.6s ease;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #ff6600;
    /* BBQ theme color - orange */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

.loading-text {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 500;
}

/* Hide loading when done */
#loading.hidden {
    opacity: 0;
    pointer-events: none;
}


/* NAVBAR */
.topbar {
    background: #ff2e2e;
    padding: 5px 0;
}

.logo img {
    height: 100px;
    width: 200px
}

.navbar-nav {
    gap: 25px;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
}

.cus_btn {
    border: 2px solid #fff;
    padding: 6px 16px;
    border-radius: 6px;
    color: #fff;
}

.cus_btn:hover {
    background: #fff;
    color: #ff2e2e !important;
    transition: 0.3s;
}

.cus_icon {
    color: #fff;
    font-size: 30px;
    padding: 0;
}

/* HERO */
.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

/* 🔥 VIDEO */
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* content */
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 700;
}

.hero-content p {
    max-width: 600px;
    margin: auto;
}

/* button */
.btn-order {
    margin-top: 20px;
    background: #ff2e2e;
    padding: 10px 25px;
    border: none;
    color: #fff;
    border-radius: 5px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #222;
    position: relative;
    display: inline-block;
}

/* section title */

.section-title span {
    color: #ff2e2e;
    position: relative;
}

.section-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff2e2e, #ff914d);
    border-radius: 2px;
}

.section-subtitle {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
    letter-spacing: 1px;
}

/* CATEGORY BUTTON */
.category-btn {
    border: 1px solid #2c2b2b;
    padding: 10px 20px;
    border-radius: 30px;
    background: transparent;
    margin: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.category-btn.active,
.category-btn:hover {
    background: #FCC173;
    color: #fff;
    border-color: #FCC173;
}

/* ================== MODERN FOOD CARD WITH DISCOUNT ================== */
.menu-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.modern-food-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.modern-food-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 46, 46, 0.18);
}

.card-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.modern-food-card:hover .card-img-wrapper img {
    transform: scale(1.12);
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff2e2e;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(255, 46, 46, 0.3);
    transform: rotate(-8deg);
    z-index: 3;
}

/* Price Badge */
.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 8px 14px;
    border-radius: 12px;
    text-align: right;
    z-index: 3;
    min-width: 95px;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.9rem;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
}

.card-content {
    padding: 22px 20px 20px;
}

.card-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.details_btn {
    background: linear-gradient(135deg, #ff2e2e, #c41e1e);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    align-items: center;
    margin: 0 auto;
    gap: 8px;
    transition: all 0.3s ease;
}

.details_btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 46, 46, 0.4);
}

.promo-banner {
    width: 100%;
}

.promo-banner img {
    width: 100%;
    height: 350px;
}


.featured-section {
    background: linear-gradient(135deg, #111, #1a1a1a);
}

.featured-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.featured-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.5s;
}

/* overlay */
.featured-overlay {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    padding: 25px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(60%);
    transition: 0.4s;
}

/* hover effect */
.featured-card:hover img {
    transform: scale(1.1);
}

.featured-card:hover .featured-overlay {
    transform: translateY(0);
}

/* text */
.featured-overlay h3 {
    font-weight: bold;
}

.featured-overlay p {
    font-size: 14px;
    opacity: 0.8;

}

/* price */
.featured_price {
    font-size: 25px;
    font-weight: bold;
    margin:0px 0;
    color: white;
}


.bbq-footer {
    background: #0f0f0f;
    color: #ccc;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
}

/* logo */
.footer-logo h2 {
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
}

/* text */
.footer-text {
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.7;
}

/* titles */
.footer-title {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ff4d00;
    position: absolute;
    bottom: -8px;
    left: 0;
}

/* items */
.footer-item {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-item i {
    color: #ff4d00;
    margin-top: 3px;
}

/* bottom */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 15px;
    font-size: 13px;
    color: #777;
}