/* --- Global Section Styling --- */
section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0;
}

.mid_container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 5rem;
}

.section-header .subtitle {
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-header .title {
    font-size: 3.5rem;
    color: var(--text-dark);
    line-height: 1.1;
}

.text-center {
    text-align: center;
}

/* --- Hero Section --- */
#hero {
    min-height: 100vh;
    background: radial-gradient(circle at 70% 30%, rgba(255, 105, 0, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
    padding-top: 120px;
    /* Account for fixed nav */
}

#hero .row-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

#hero .col-1.text-content {
    flex: 1.2;
}

#hero .col-1.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

#hero .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #FFF0E6;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

#hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-dark);
}

#hero h1 .accent-text {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#hero h2 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 3rem;
}

#hero img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* --- Products Section --- */
#products {
    background-color: var(--white);
}

.row-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8rem;
    gap: 5rem;
}

.row-2.reverse-layout {
    flex-direction: row-reverse;
}

.col-2.img-col {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Decorative Circle behind products */
.circle-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: #f5f5f5;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
}

.circle-bg.pineapple-bg {
    background-color: #fff9f0;
}

.circle-bg.mango-bg {
    background-color: #fffaf0;
}

.circle-bg.lime-bg {
    background-color: #f2f9f0;
}

.col-2.img-col:hover .circle-bg {
    transform: scale(1.05);
}

.col-2.img-col img {
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 300px;
    transition: var(--transition);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.col-2.img-col:hover img {
    transform: translateY(-10px) scale(1.05);
}

.col-2.text-col {
    flex: 1.2;
}

.col-2.text-col h3 {
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.col-2.text-col h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.col-2.text-col p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 90%;
}

/* --- Health & Wellness (Grid Layout) --- */
#hnw {
    background-color: var(--bg-light);
    /* Subtle grey background for separation */
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.grid-3 .card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.grid-3 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.grid-3 .card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.grid-3 .card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.grid-3 .card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Our Story --- */
#os {
    background-color: var(--white);
    background-image: url(./images/new-bg-logo.png);
    background-size: 10%;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.story-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    section {
        padding: 60px 0;
        min-height: auto;
    }

    .section-header .title {
        font-size: 2.5rem;
    }

    /* Hero Mobile */
    #hero .row-1 {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    #hero h1 {
        font-size: 3rem;
    }

    #hero .col-1.image-content {
        width: 100%;
    }

    /* Products Mobile */
    .row-2,
    .row-2.reverse-layout {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .col-2.text-col h1 {
        font-size: 2.2rem;
    }

    .col-2.text-col p {
        max-width: 100%;
        font-size: 1rem;
    }

    .circle-bg {
        width: 250px;
        height: 250px;
    }

    /* HNW Mobile */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}