/* ================================ */
/* GLOBAL PAGE SETUP */
/* ================================ */
body {
    background: linear-gradient(to bottom, #101010 0%, #121212 40%, #1a1a1a 100%);
    color: #fff;
    font-family: "Varela Round", sans-serif;
}

h1, h2 {
    background: linear-gradient(90deg, #fff, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section {
    padding: 120px 8%;
}


/* ===================================== */
/* HERO */
/* ===================================== */

.ls-hero {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 60px;
}

.ls-hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
}

.ls-hero-bg img {
    width: 25%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: .4s ease;
}

.ls-hero-bg img:hover {
    filter: brightness(0.9);
    transform: scale(1.02);
}

.ls-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ls-hero-text h1 {
    font-size: 58px;
}

.ls-hero-text p {
    font-size: 20px;
    color: #e6e6e6;
}



/* ===================================== */
/* WELLNESS ARTICLES */
/* ===================================== */

.ls-section {
    text-align: center;
}

.subtitle {
    margin-top: 10px;
    font-size: 18px;
    color: #cfcfcf;
}

.article-grid {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.article-card {
    width: 300px;
    padding: 28px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    transition: .3s ease;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 22px rgba(255,140,80,0.3);
}


/* ================================ */
/* ABOUT SECTIONS */
/* ================================ */
.about-section {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.text-wrap {
    flex: 1;
}


.text-wrap p {
    color: #d9d9d9;
    line-height: 1.7;
}

.bullet-list {
    margin: 20px 0;
    padding-left: 20px;
    color: #ccc;
}

.bullet-list.big li {
    margin-bottom: 10px;
    font-size: 18px;
}

.image-wrap {
    flex: 1;
    position: relative;
}

.small-round img,
.tall-round img {
    width: 100%;
    border-radius: 26px;
    object-fit: cover;
}

.small-round img { height: 360px; }
.tall-round img { height: unset; }

.glow::before {
    content: "";
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle, rgba(255,123,63,0.35), transparent 70%);
    filter: blur(70px);
    z-index: -1;
}


/* ================================ */
/* STRIP PANEL */
/* ================================ */
.strip-panel {
    padding: 80px 0 0 0;
}

.strip-track {
    display: flex;
}

.strip-track img {
    width: 25%;
    object-fit: cover;
    transition: .3s;
}

.strip-track img:hover {
    transform: scale(1.04);
    filter: brightness(1.12);
}


/* ================================ */
/* PROMISE SECTION */
/* ================================ */
.promise-panel {
    text-align: center;
}

.promise-panel p {
    font-size: 20px;
    color: #dcdcdc;
}



/* ================================ */
/* RESPONSIVE */
/* ================================ */
@media (max-width: 900px) {

    .about-section,
    .about-section.reverse {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 40px;
    }

    .small-round img,
    .tall-round img {
        height: auto;
    }
}



/* ===================================== */
/* ABOUT — Image With Text Overlap */
/* ===================================== */

.about-section.overlap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    min-height: 520px;
}

/* IMAGE PANEL */
.about-section .image-panel {
    flex: 1.1;
    height: 520px;
    overflow: hidden;
    position: relative;
}

.about-section .image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: 0.4s;
}

.about-section .image-panel:hover img {
    transform: scale(1.05);
}

/* TEXT PANEL — overlapping style */
.about-section .text-panel {
    flex: 1;
    margin-left: -120px; /* THIS creates overlap */
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(12px);
    padding: 55px 60px;
    border-radius: 18px;
    z-index: 3;
    box-shadow: 0 0 35px rgba(0,0,0,0.35);
}

/* Text styling */
.about-section .text-panel h2 {
    font-size: 42px;
    margin-bottom: 22px;
}

.about-section .text-panel p {
    margin-top: 20px;
    opacity: 0.85;
    line-height: 1.6;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {

    .about-section.overlap {
        flex-direction: column;
        padding: 60px 8%;
    }

    .about-section .image-panel,
    .about-section .image-panel img {
        height: 360px;
    }

    .about-section .text-panel {
        margin-left: 0;
        margin-top: -40px;
        width: 94%;
    }
}


/* ===================================== */
/* ANIMATIONS */
/* ===================================== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


