/* ===================================== */
/* GLOBAL */
/* ===================================== */

body {
    background: #0a0a0c;
    color: #fff;
    font-family: "Varela Round", sans-serif;
}

section {
    padding: 100px 8%;
}

h1, h2, h3 {
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================================== */
/* HERO — FUN TIKTOK STYLE */
/* ===================================== */

.ls-hero-text h1 {
    font-size: 58px;
}

.fun-hero { position: relative; }

.sticker-title {
    font-size: 62px;
    background: #fff;
    color: #000;
    padding: 12px 26px;
    border-radius: 16px;
    display: inline-block;
    transform: rotate(-3deg);
    box-shadow: 0 6px 0 #ff7b3f;
}

.fun-sub {
    margin-top: 10px;
    font-size: 20px;
    opacity: 0.9;
}

/* Doodles */
.hero-arrow {
    position: absolute;
    bottom: -20px;
    right: 20%;
    width: 120px;
    opacity: 0.85;
}

.hero-star {
    position: absolute;
    top: -10px;
    left: 22%;
    width: 60px;
}

/* Background strip */
.ls-hero {
    position: relative;
    height: 250px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 60px;
    overflow: hidden;
}

.ls-hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
}

.ls-hero-bg img {
    width: 25%;
    object-fit: cover;
    filter: brightness(0.55);
    transition: .4s;
}

.ls-hero-bg img:hover {
    filter: brightness(0.9);
    transform: scale(1.03);
}

.ls-hero-text {
    z-index: 2;
    text-align: center;
}

/* ===================================== */
/* WELLNESS ARTICLES — POLAROID STYLE */
/* ===================================== */

.article-grid {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.polaroid {
    background: #fff;
    color: #000;
    padding: 25px;
    width: 260px;
    border-radius: 12px;
    transform: rotate(-1deg);
    box-shadow: 0 15px 25px rgba(0,0,0,0.35);
    position: relative;
    transition: .35s;
}

.polaroid:hover {
    transform: rotate(0deg) translateY(-8px);
}

.sticker {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff7b3f;
    color: #000;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 700;
}

/* Tilt variations */
.tilt-left { transform: rotate(-3deg); }
.tilt-right { transform: rotate(2deg); }

/* ===================================== */
/* CREATOR CREW */
/* ===================================== */

.creator-section {
    background: linear-gradient(90deg,
        rgba(255,120,80,0.14) 0%,
        rgba(255,255,255,0) 40%,
        rgba(120,180,255,0.14) 70%,
        rgba(255,255,255,0) 100%
    ),
    #0a0a0c;
}


.creator-inner { max-width: 980px; margin: auto; text-align: center; }

.creator-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.creator-box {
    flex: 1;
    min-width: 280px;
    padding: 26px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.sticker-tag {
    position: absolute;
    top: -16px;
    left: 12px;
    background: #ffcfb0;
    color: #000;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}

/* Apply button */
.bubble-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    background: #ff7b3f;
    color: #000;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(255,123,63,0.4);
    transition: .3s;
}

.bubble-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 22px rgba(255,123,63,0.5);
}

/* ===================================== */
/* FREE SAMPLE */
/* ===================================== */

/* ===================================== */
/* SPLIT SECTION: LEFT IMAGE + RIGHT CONTENT */
/* ===================================== */

.sample-section {
    display: flex;
    min-height: 520px;
    width: 100%;
    padding: 0;          /* remove internal padding */
    position: relative;
    overflow: hidden;
}

/* left image panel */
.sample-img-panel {
    flex: 1.5;
    background: url(../images/girlhand-it.jpeg);
    background-position-y: 10%;
    background-position-x: 90%;
    background-size: cover;

    filter: brightness(0.88);
    min-height: 520px;
}

/* right content panel */
.sample-content-panel {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* FREE sticker */
.free-sticker {
    display: inline-block;
    background: #ff8e52;
    color: #000;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 20px;
    box-shadow: 0 0 18px rgba(255,120,70,0.55);
}

/* text style */
.sample-content-panel h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.sample-text {
    font-size: 18px;
    color: #e4e4e4;
    margin-bottom: 25px;
}

.sample-steps {
    color: #dcdcdc;
    line-height: 1.8;
    margin-bottom: 22px;
}

.sample-note {
    color: #ffceaa;
    margin-bottom: 15px;
}

.sample-stat {
    color: #ff9d6e;
    font-weight: bold;
    margin-bottom: 25px;
}

/* CTA Button */
.bubble-btn.orange {
    background: linear-gradient(90deg, #ff8e52, #ff6a2f);
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 18px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(255,110,50,0.45);
    transition: 0.3s ease;
}

.bubble-btn.orange:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 28px rgba(255,110,50,0.65);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .sample-section {
        flex-direction: column;
        min-height: auto;
    }

    .sample-img-panel {
        height: 300px;
    }

    .sample-content-panel {
        padding: 60px 8%;
        text-align: center;
    }
}

/* ===================================== */
/* ANIMATION */
/* ===================================== */

.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: 1s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width: 900px) {

    .sticker-title { font-size: 42px; }

    .creator-grid { flex-direction: column; }

    .polaroid { width: 100%; max-width: 330px; }

    .ls-hero-bg img { height: 100%; }
}

.ls-section {
    position: relative;
    padding: 100px 8%;
    overflow: hidden;
}

/* 背景层：左边颜色 → 右边生活照片 */
.ls-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to right, rgba(10,10,12,1) 0%, rgba(10,10,12,0.6) 40%, rgba(10,10,12,0) 65%),
        url("../images/about_2.jpeg") center/cover no-repeat;
    opacity: 0.55;  /* 让照片不会太强 */
    filter: blur(2px);
    z-index: 0;
}

/* 让内容保持在上层 */
.ls-section > * {
    position: relative;
    z-index: 2;
}
