/* --- ALIGNMENT NORMALIZATION (STABLE PREMIUM LAYOUT) --- */

section h2 {
    text-align: center;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300&family=Raleway:wght@400;500;600&display=swap');

/* GLOBAL STYLES */
* {
    box-sizing: border-box;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ALIGNMENT SYSTEM */
.product-section,
.story-section,
.brands-section,
.why-us-section {
    text-align: center;
}

.contact-section {
    text-align: left;
}

body {
    margin: 0;
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    color: #2B2B2B;
    background-color: #FAF7F2;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

p, li {
    color: #3A3A3A;
}

.product-section p,
.story-section p,
.brands-section p,
.why-us-section p {
    max-width: 760px;
    margin: 0 auto 14px;
    font-size: 0.95rem;
    color: #3A3A3A;
    opacity: 1;
}

.contact-section p {
    max-width: none;
    margin: 0 0 10px 0;
}

h2 {
    text-align: center;
    margin: 42px 0 20px;
    font-size: 2.2rem;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}
h1, h3 {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}
h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #F2E3B3;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Left-align divider for Get in Touch heading */
.contact-section h2::after {
    margin-left: 0;
    margin-right: 0;
}

/* HERO */
.hero {
    background: #732d28;
    min-height: 45vh;
    position: relative;
    color: #F2E3B3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* HERO LOGO SIZE CONTROL */
.hero-content img {
    max-width: 140px;
    height: auto;
    margin-bottom: 6px;
}
.hero-content {
    text-align: center;
    position: relative;
    max-width: 860px;
    padding: 40px 20px 20px;
}

.hero-content h1 {
    font-size: 7.2rem;
    font-weight: 100;
    letter-spacing: 1.6px;
    margin-bottom: 4px;
    color: #F2E3B3;
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 420px;
    margin: 0 auto 36px;
    color: #FAF7F2;
    letter-spacing: 0.4px;
    margin-top: 0;
}

.hero-brand h1 {
    margin: 0;
    line-height: 1;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.hero-logo {
    max-width: 80px;
    height: auto;
}

.primary-btn {
    background: transparent;
    border: 2px solid #F2E3B3;
    color: #F2E3B3;
    padding: 12px 36px;
    border-radius: 30px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 28px;
}
.primary-btn:hover {
    background: #F2E3B3;
    color: #5E2A26;
}

/* PRODUCT SECTIONS */
.product-section,
.story-section,
.brands-section,
.why-us-section,
.contact-section {
    background: #FAF7F2;
}
.product-section, .story-section, .brands-section, .why-us-section, .contact-section {
    padding: 32px 20px;
}
.card {
    margin: 24px auto;
    padding: 26px 24px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    color: #2B2B2B;
}
.product-section .card {
    width: 80%;
}
.brand-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.brand-card {
    padding: 25px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: #FFFFFF;
    border-radius: 12px;
    text-align: center;
}
.brand-card * {
    text-align: center;
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.brand-card img {
    max-width: 140px;
    margin-bottom: 14px;
    filter: grayscale(10%);
}
.brand-card p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}
.btn {
    background: linear-gradient(135deg, #7B3A34, #5E2A26);
    color: #F2E3B3;
    padding: 11px 26px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.6px;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    line-height: 1;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}
.outline-btn {
    background: transparent;
    border: 2px solid #7B3A34;
    color: #7B3A34;
}
.outline-btn:hover {
    background: #7B3A34;
    color: #F2E3B3;
}
.small-btn {
    display: block;
    margin-top: 8px;
}

.brand-card .btn {
    margin-bottom: 12px;
}
.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 30px;
}
.why-us-section {
    color: #1f2933;
}

/* CONTACT SECTION */
.contact-section {
    background: #FAF7F2;
    color: #1f2933;
    text-align: left;
}
.contact-section .container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 56px;
    align-items: flex-start;
}
.contact-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 68px; /* aligns logo with contact details, below heading */
}

.contact-brand img {
    max-width: 185px;
    height: auto;
}
.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}
.contact-section .contact-info h2 {
    margin-top: 0;
    margin-bottom: 16px;
    text-align: left;
    margin-left: 0;
}

.contact-section .contact-info p {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: baseline;
    gap: 16px;
    margin: 0;
}

.contact-section .contact-info p span {
    font-size: 0.8rem;
    color: #8A6A55;
    letter-spacing: 0.4px;
}

.contact-section .contact-info p br {
    display: none;
}

/* .contact-section form {
    display: flex;
    flex-direction: column;
    max-width: 520px;
    margin: 0 0 30px 0;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
} */

.contact-section input,
.contact-section textarea {
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    color: #1f2933;
}
.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}
.submit-btn {
    width: 50%;
    align-self: flex-start;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 18px;
    background: linear-gradient(135deg, #5E2A26, #7B3A34);
    color: #F2E3B3;
    letter-spacing: 0.6px;
}
footer p {
    color: #f8fafc;
    opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hero {
        min-height: 50vh;
    }

    .hero-content img {
        max-width: 110px;
        margin-bottom: 4px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .h2 {
        font-size: 1.6rem;
    }

    .hero-brand {
    flex-direction: column;
    gap: 8px;
    }

    .hero-logo {
        max-width: 60px;
    }

    .product-section .card {
        width: 95%;
    }
    .contact-section .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-section .contact-info p {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .contact-section .container img {
        margin-bottom: 12px;
    }
    .sproutzee-card img {
        max-width: 130px;
    }
    .contact-brand {
        margin-top: 0;
    }
}

a {
    color: #7B3A34;
}

a:hover {
    color: #5E2A26;
}

.product-section,
.story-section,
.brands-section,
.why-us-section,
.contact-section {
    position: relative;
}

.product-section::after,
.story-section::after,
.brands-section::after,
.why-us-section::after {
    content: "";
    display: block;
    height: 1px;
    width: 80%;
    margin: 36px auto 0;
    background: linear-gradient(90deg, transparent, #d1d5db, transparent);
}

.why-features .feature {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* LOGO LINE MOTIF */
.line-motif {
    position: relative;
}
.line-motif::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 20px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 6px,
        rgba(242,227,179,0.25) 6px,
        rgba(242,227,179,0.25) 8px
    );
    z-index: -1;
}
.brand-card .btn {
    background: transparent;
    border: 2px solid #7B3A34;
    color: #7B3A34;
}

.brand-card .btn:hover {
    background: #7B3A34;
    color: #F2E3B3;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.brand-card .btn,
.brand-card .btn:hover {
    text-decoration: none;
}

.sproutzee-card {
    background: #F5E6CC; /* logo background cream */
    border: 1px solid #E6D6B8;
}

.sproutzee-card h3 {
    color: #6B3F2B;
}

.sproutzee-card p {
    color: #4A2C1D;
}

/* Sproutzee Card Image Size */
.sproutzee-card img {
    max-width: 160px;
    height: auto;
    margin: 0 auto 12px;
    display: block;
}

.contact-section .contact-info * {
    text-align: left;
}

/* Contact info – clean premium links */
.contact-section .contact-info a {
    font-weight: 500;
    color: #5E2A26;
    text-decoration: none;
}

.contact-section .contact-info a:hover {
    text-decoration: underline;
    opacity: 0.85;
}

/* Phone CTA styling */



.contact-section .contact-info p span {
    font-weight: 500;
}

/* Featured Brands – brand matched backgrounds */

/* Sproutzee */
.brand-card.brand-sproutzee {
    background: #F5E6CC; /* cream from Sproutzee logo */
}

/* Biryani Barrel */
.brand-card.brand-biryanibarrel {
    background: #F6E84D; /* yellow from Biryani Barrel logo */
}

/* Pouch Plates */
.brand-card.brand-pouchplates {
    background: #0E3F6F; /* navy from Pouch Plates logo */
}

.brand-card.brand-pouchplates h3,
.brand-card.brand-pouchplates p,
.brand-card.brand-pouchplates a {
    color: #FFFFFF;
}
.brand-card h3 {
    font-size: 1.55rem;
    margin-bottom: 12px;
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* Improve text contrast per brand background */

/* Sproutzee */
.brand-card.brand-sproutzee p {
    color: #4A2C1D;
}

/* Biryani Barrel */
.brand-card.brand-biryanibarrel p {
    color: #3A2F00;
}

/* Pouch Plates (dark bg) */
.brand-card.brand-pouchplates p {
    color: #F8FAFC;
    opacity: 0.95;
}
.brand-card.brand-sproutzee .btn {
    border-color: #6B3F2B;
    color: #6B3F2B;
}
.brand-card.brand-sproutzee .btn:hover {
    background: #6B3F2B;
    color: #F5E6CC;
}

/* Biryani Barrel */
.brand-card.brand-biryanibarrel .btn {
    border-color: #3A2F00;
    color: #3A2F00;
}
.brand-card.brand-biryanibarrel .btn:hover {
    background: #3A2F00;
    color: #F6E84D;
}

/* Pouch Plates */
.brand-card.brand-pouchplates .btn {
    border-color: #FFFFFF;
    color: #FFFFFF;
}
.brand-card.brand-pouchplates .btn:hover {
    background: #FFFFFF;
    color: #0E3F6F;
}