/* ==================================================
   INDU PRATIBHA — CUSTOM STYLESHEET
   Built on top of Bootstrap 5
   ================================================== */

:root {
    --ip-cream: #fdf6e9;
    --ip-cream-deep: #fbead1;
    --ip-tan: #f4dfae;
    --ip-red: #c6350c;
    --ip-red-dark: #8f2408;
    --ip-orange: #ef7a1a;
    --ip-orange-dark: #d9640a;
    --ip-maroon: #5c1006;
    --ip-maroon-deep: #3c0a04;
    --ip-text: #2b2118;
    --ip-text-light: #6b5f52;
    --ip-gold: #f5a623;
    --ip-white: #ffffff;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ip-text);
    background-color: var(--ip-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.ip-text-accent {
    color: var(--ip-red);
}

.ip-section-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--ip-text);
    margin-bottom: 1rem;
}

.ip-section-subtext {
    color: var(--ip-text-light);
    font-size: 0.95rem;
    max-width: 480px;
}

/* ==================================================
   BUTTONS
   ================================================== */
.ip-btn-primary {
    background: linear-gradient(180deg, var(--ip-orange) 0%, var(--ip-orange-dark) 100%);
    color: var(--ip-white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 16px rgba(217, 100, 10, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ip-btn-primary:hover {
    color: var(--ip-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217, 100, 10, 0.45);
}

.ip-btn-outline {
    background: transparent;
    color: var(--ip-red);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    border: 1.5px solid var(--ip-red);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.ip-btn-outline:hover {
    background: var(--ip-red);
    color: var(--ip-white);
}

/* ==================================================
   HEADER
   ================================================== */
.ip-header {
    background: var(--ip-cream);
    padding: 0.85rem 0;
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(198, 53, 12, 0.08);
}

.ip-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ip-logo {
    display: flex;
    align-items: center;
}

.ip-logo-icon {
    height: 100px;
    width: 100px;
}

.ip-nav-list {
    list-style: none;
    display: flex;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
}

.ip-nav-list a {
    color: var(--ip-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

.ip-nav-list a:hover,
.ip-nav-list a.active {
    color: var(--ip-red);
}

.ip-nav-list a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--ip-red);
}

.ip-header-icons {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.ip-icon-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.ip-menu-checkbox {
    display: none;
}

.ip-menu-btn {
    font-size: 1.35rem;
    color: var(--ip-red);
    cursor: pointer;
    margin: 0;
    line-height: 1;
}

.ip-mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.ip-mobile-nav .ip-nav-list {
    flex-direction: column;
    gap: 0;
    padding-top: 0.5rem;
}

.ip-mobile-nav .ip-nav-list li {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ip-mobile-nav .ip-nav-list a {
    display: block;
    padding: 0.75rem 0.25rem;
}

.ip-menu-checkbox:checked ~ .ip-mobile-nav {
    max-height: 260px;
}

/* ==================================================
   HERO
   ================================================== */
.ip-hero {
    background-image: url("Assets/hero-banner.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.ip-hero-text-col {
    margin-bottom: 13.5rem;
}

.ip-hero-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.1rem;
    line-height: 1.25;
    color: var(--ip-text);
    margin-bottom: 1rem;
}

.ip-hero-desc {
    color: var(--ip-text-light);
    font-size: 1rem;
    max-width: 460px;
    margin: 0 auto 1.5rem;
}

.ip-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ip-hero-img-col {
    margin-top: 1rem;
}

.ip-hero-img {
    max-height: 500px;
    margin: 0 auto;
}

.ip-feature-strip {
    background: var(--ip-white);
    padding: 1.5rem 0;
    margin-top: 2.5rem;
    box-shadow: 0 -8px 24px rgba(92, 16, 6, 0.06);
    position: relative;
}

.ip-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.ip-feature-item img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.ip-feature-item span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ip-text);
}

/* ==================================================
   WHY CHOOSE
   ================================================== */
.ip-why-choose {
    background: var(--ip-white);
    padding: 3.5rem 0;
}

.ip-why-text-col {
    margin-bottom: 2rem;
}

.ip-why-item {
    padding-left: 1.6rem;
    border-left: 3px solid var(--ip-orange);
    margin-bottom: 1.4rem;
}

.ip-why-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ip-text);
    margin-bottom: 0.3rem;
}

.ip-why-item p {
    color: var(--ip-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.ip-why-img {
    border-radius: 18px;
    box-shadow: 0 16px 32px rgba(92, 16, 6, 0.15);
}

/* ==================================================
   OFFER BANNER
   ================================================== */
.ip-offer-banner {
    background-image: url('Assets/flat-offer.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.ip-offer-banner::before,
.ip-offer-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
}

.ip-offer-banner::before {
    width: 220px;
    height: 220px;
    background: var(--ip-orange);
    top: -60px;
    left: -60px;
}

.ip-offer-banner::after {
    width: 260px;
    height: 260px;
    background: #ffcf6b;
    bottom: -90px;
    right: -70px;
    opacity: 0.35;
}

.ip-offer-text-col {
    position: relative;
    z-index: 2;
}

.ip-offer-banner h2 {
    font-family: var(--font-body);
    color: var(--ip-white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.ip-offer-flat {
    font-family: var(--font-heading);
    color: var(--ip-white);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
}

.ip-offer-percent {
    font-family: var(--font-heading);
    color: #ffd873;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 184, 68, 0.65);
}

/* ==================================================
   PRODUCTS (Customer Favorites / Signature Spices)
   ================================================== */
.ip-products,
.ip-signature {
    background: var(--ip-cream);
    padding: 3.5rem 0;
}

.ip-section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ip-product-card {
    background: var(--ip-white);
    border-radius: 16px;
    padding: 1rem 1rem 1.25rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 24px rgba(92, 16, 6, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ip-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(92, 16, 6, 0.14);
}

.ip-product-card img {
    border-radius: 10px;
    margin-bottom: 0.85rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.ip-product-card h5 {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ip-text);
    margin-bottom: 0.35rem;
}

.ip-stars {
    color: var(--ip-gold);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.ip-price {
    font-weight: 700;
    color: var(--ip-text);
    font-size: 1rem;
}

.ip-price span {
    font-weight: 400;
    color: #b3a99c;
    text-decoration: line-through;
    font-size: 0.85rem;
    margin-left: 0.3rem;
}

.ip-view-all-mobile {
    margin-top: 2rem;
}

/* ==================================================
   OUR STORY
   ================================================== */
.ip-our-story {
    background-image: url('Assets/our-story.webp');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    color: var(--ip-white);
}

.ip-story-text-col h2 {
    color: red;
}

.ip-story-text-col p {
    color: #504331;
    font-size: 0.92rem;
    margin-bottom: 0.9rem;
}
.ip-story-text-col p{
    color:#000000 !important;
}

/* ==================================================
   FOOTER
   ================================================== */
.ip-footer {
    background: #ffdfa5;
    padding: 3rem 0 1.5rem;
}

.ip-footer-col {
    margin-bottom: 2rem;
}

.ip-footer-logo {
    display: inline-flex;
    margin-bottom: 0.75rem;
}

.ip-footer-tagline {
    color: var(--ip-text-light);
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.ip-social-icons {
    display: flex;
    gap: 0.6rem;
}

.ip-social-icons img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.ip-footer h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #c32121;
    margin-bottom: 1rem;
}

.ip-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ip-footer-links li {
    margin-bottom: 0.55rem;
}

.ip-footer-links a {
    color: var(--ip-text-light);
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.ip-footer-links a:hover {
    color: var(--ip-red);
}

.ip-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ip-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--ip-text-light);
    font-size: 0.85rem;
    margin-bottom: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
}

.ip-footer-contact img {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ip-footer-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0.5rem 0 1.25rem;
}

.ip-footer-copyright p {
    color: var(--ip-text-light);
    font-size: 0.82rem;
    margin: 0;
}

/* ==================================================
   TABLET (>=768px)
   ================================================== */
@media (min-width: 768px) {
    .ip-section-heading {
        font-size: 2.15rem;
    }

    .ip-hero-heading {
        font-size: 2.5rem;
    }

    .ip-offer-percent {
        font-size: 3.6rem;
    }
    .ip-hero {
        background-image: url("Assets/hero-banner-mobile.webp");
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;

        /* Remove fixed height */
        height: auto;
        min-height: 0;
    }


    .ip-why-choose,
    .ip-products,
    .ip-signature,
    .ip-our-story {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
    .ip-story-text-col p{
        color:var(--ip-cream);
    }
}

/* ==================================================
   DESKTOP (>=992px)
   ================================================== */
@media (min-width: 992px) {
    .ip-hero {
        background-image: url("Assets/hero-banner.webp");
        text-align: left;
        padding-top: 4rem;
    }

    .ip-hero-text-col {
        margin-bottom: 144px;
    }

    .ip-hero-desc {
        margin: 0 0 1.75rem;
    }

    .ip-hero-buttons {
        justify-content: flex-start;
    }

    .ip-hero-heading {
        font-size: 3rem;
    }

    .ip-hero-img {
        max-height: 480px;
    }

    .ip-section-heading {
        font-size: 2.4rem;
    }

    .ip-why-text-col {
        margin-bottom: 0;
        padding-right: 2rem;
    }

    .ip-offer-banner {
        padding: 4.5rem 0;
    }

    .ip-offer-percent {
        font-size: 4.2rem;
    }
}

/* ==================================================
   SMALL MOBILE (<400px) FINE TUNING
   ================================================== */
@media (max-width: 399.98px) {
    .ip-hero {
        background-image: url("Assets/hero-banner-mobile.webp");
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
    }
    .ip-hero-heading {
        font-size: 1.8rem;
    }

    .ip-offer-percent {
        font-size: 2.6rem;
    }

    .ip-section-heading {
        font-size: 1.6rem;
    }
    .ip-hero-heading {
        margin-top: 6rem;
        margin-bottom: 1rem;
    }
    .ip-story-text-col p {
    color: #ece6e6;;
}
}
