/* ===================================== */
/* GLOBAL */
/* ===================================== */

body {
    background: #0a0a0c;
    color: #fff;
    font-family: "Varela Round", sans-serif;
}

section {
    padding: 100px 8%;
}

h1, h2 {
    background: linear-gradient(90deg, #fff, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ============================================================
   HERO — Lifestyle Strip Banner
============================================================ */
.ls-hero {
    position: relative;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 65px;
}

.ls-hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
}

.ls-hero-bg img {
    width: 25%;
    object-fit: cover;
    filter: brightness(0.55);
    transition: 0.5s ease;
}

.ls-hero-bg img:hover {
    filter: brightness(0.9);
    transform: scale(1.04);
}

.ls-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    backdrop-filter: blur(4px);
}

.ls-hero-text h1 {
    font-size: 56px;
    margin-bottom: 6px;
}

.ls-hero-text p {
    font-size: 20px;
    color: #f2f2f2;
    opacity: 0.9;
}



/* ============================================================
   WELLNESS SECTION
============================================================ */
.ls-section {
    text-align: center;
}

.subtitle {
    margin-top: 10px;
    font-size: 18px;
    color: #d3d3d3;
}

.article-grid {
    margin-top: 50px;
    display: flex;
    gap: 35px;
    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: 0.35s cubic-bezier(.22,.61,.36,1);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255,140,80,0.25);
}


/* ===================================== */
/* HERO */
/* ===================================== */

.testi-hero {
    position: relative;
    height: 380px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 70px;
}

.testi-hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/about.jpg") center/cover no-repeat;
    background-attachment: fixed;
    filter: brightness(0.45);
}

.testi-hero-content {
    position: relative;
    z-index: 4;
}

.testi-hero h1 {
    font-size: 56px;
}

.testi-hero p {
    font-size: 20px;
    color: #ccc;
}



/* ===================================== */
/* QUOTES SECTION */
/* ===================================== */

.testi-quotes {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.quote-card {
    min-width: 260px;
    max-width: 360px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 22px rgba(255,140,80,0.25);
    text-align: center;
    font-size: 20px;
    color: #ffcfb0;
}



/* ===================================== */
/* REACTIONS GRID */
/* ===================================== */

.testi-grid-section h2 {
    text-align: center;
}

.testi-grid {
    margin-top: 50px;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testi-video video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(255,123,63,0.35);
}

.testi-embed {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    padding: 10px;
}

.testi-img img {
    width: 100%;
    border-radius: 18px;
}



/* ===================================== */
/* ANIMATION */
/* ===================================== */

.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width: 900px) {
    .quote-card {
        width: 100%;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }
}
