:root {
    --primary-red: #E2003F;
    --dark-blue: #121928;
}

body { font-family: 'Outfit', sans-serif; }
h1, h2, h3, h4, h5, h6, .navbar-brand strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.text-primary-red { color: var(--primary-red); }
.text-dark-blue { color: var(--dark-blue); }

.btn-primary-red { background-color: var(--primary-red); color: white; border: none; }
.btn-primary-red:hover { background-color: #c20036; color: white; }

.navbar .nav-link { color: var(--dark-blue); font-weight: 500; padding: 0 17px!important; }

.hero-section { background: linear-gradient(135deg, #fff7f9 0%, #ffffff 100%); }

.feature-box { border: 1px solid #ddd; padding: 10px 20px; border-radius: 8px; font-weight: 600; }
@media (max-width: 767px) {
    .feature-box {
        width: 100%;
        justify-content: flex-start; /* Keeps the icon to the left on mobile */
    }
}
.info-banner { transform: translateY(-50px); }

/* Decorative Background Elements */
.hero-bg-decor {
    
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Dummy placeholder for the frying pan */
.pan-img {
    position: absolute;
    bottom: -150px;
    left: -50px;
    width: 400px;
    content: url('../images/frying-pan.webp'); /* Replace with your local image */
}

/* Dummy placeholder for the tomato */
.tomato-img {
    position: absolute;
    bottom: -50px;
    right: 70px;
    width: 320px;
    content: url('../images/tomato.webp'); /* Replace with your local image */
}

.love{position: absolute; left: 70px; top: 70px}
.ms-arrow{position: absolute; left: 270px; bottom: 65px}
.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bg-dark-blue { background-color: #121928; }
.bg-primary-red { background-color: #E2003F; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-circle { margin-bottom: 20px; }
}



.bg-light-pink { background-color: #fffafb; }

/* The Biryani image positioning */
.hero-food-img {
    position: absolute;
    left: -150px;
    bottom: -150px;
    width: 400px;
	z-index: 0
}

.bg-dark-blue { background-color: #121928; }

/* Footer spacing */
footer i { color: #fff; margin-right: 10px; }


/* Container for side-by-side alignment */
.feature-item {
    display: flex;
    align-items: flex-start; /* Aligns icon with the top of the text */
    gap: 15px;               /* Space between icon and text */
    margin-bottom: 30px;
}

/* Ensure the icon container has a fixed width if needed */
.icon-container {
    flex: 0 0 30px;         /* Prevents the icon from shrinking */
    text-align: center;
    font-size: 1.2rem;
}

/* Right-side alignment fix for the "Home Cooks" column */
.home-cooks-col .feature-item {
    flex-direction: row-reverse; /* Flips icon and text for the right column */
    text-align: right;
}

.feature-card-header { font-weight: 600; font-size: 0.9rem; }

.feature-item img { width: 60px !important;
    border: 2px solid #fdc0cb;
    border-radius: 20px;
    padding: 5px}


.faq-item .accordion-button:not(.collapsed) { background-color: #fff; }

/* Rotate plus/minus icon dynamically */
.faq-item button[aria-expanded="true"] .fa-plus::before { content: "\f068"; } /* Changes plus to minus */

.faq-item button { transition: all 0.3s ease; }
.faq-item button:hover { background-color: #273042  !important; }

/* Dark Mode Container */
.faq-dark-mode {
    background-color: #121928;
    color: #ffffff;
    padding: 5rem 0!important;
}

/* FAQ Item Cards in Dark Mode */
.faq-dark-mode .bg-white {
    background-color: #1a2233 !important; /* Slightly lighter than background */
    color: #ffffff !important;
}

/* Ensure text inside cards is white */
.faq-dark-mode .text-muted {
    color: #b0b0b0 !important;
}

/* Ensure Question mark icon stays visible */
.faq-dark-mode .text-primary-red {
    color: #E2003F !important;
}



.showcaseSwiper { padding: 40px 0; }

.app-mockup {
    position: relative;
    width: 280px; /* Adjust based on your frame size */
    margin: 20px auto;
}

.app-mockup .frame {
    position: relative;
    z-index: 2;
    width: 100%;
}

.app-mockup .screen {
    position: absolute;
    top: 19px; /* Offset to fit inside the frame notch */
    left: 26px;
    width: 81%;
    z-index: 1;
    border-radius: 25px; /* Matches phone rounded corners */
}

.swiper-slide { opacity: 0.5; transition: 0.3s; }
.swiper-slide-active { opacity: 1; transform: scale(1.1); }

/* Force slides to be flush together */
.swiper-wrapper {
    display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
}

.swiper-slide {
    margin-right: 0 !important; /* Forces elements to touch */
    flex-shrink: 0;
}
.swiper-slide h5{font-weight: 700!important}
.swiper-slide .text-muted{color: #121928!important}


/* Add this to your style.css */
.navbar-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}


/* Make active links red */
.navbar-nav .nav-link.active {
    color: #E2003F !important;
    font-weight: 700;
}

@media (max-width: 991px) {
    section, footer {
        scroll-margin-top: 70px; /* Mobile navbar height */
    }
}

@media (min-width: 992px) {
    section, footer {
        scroll-margin-top: 80px; /* Desktop navbar height */
    }
}
