:root {
    --purple-deep: #3b0764;
    --purple-mid: #7c3aed;
    --purple-light: #6D5DF6;
    --purple-gradient: linear-gradient(180deg, rgba(76, 0, 176, 1) 0%, rgba(109, 93, 246, 1) 50%, rgba(169, 156, 253, 1) 100%);
    --white: #f5f0ff;
    --font-color: #260058;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--font-color);
}

.bg-blob {
    position: fixed;
    top: 0;
    right: -5%;
    width: 50%;
    height: 110vh;
    transition: transform 0.05s linear;
    background-image: url("../resources/img/experiences/Ellipse.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

/* ════════════════════
   HERO
════════════════════ */
.hero {
    position: relative;
    width: 100%;
    height: 42vw;
    min-height: 260px;
    max-height: 480px;
    overflow: hidden;
    background: var(--font-color);
    z-index: 1;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.hero-video-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

/* Very subtle top-only darkening, strong white fade at bottom */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.0) 0%,
            rgba(0, 0, 0, 0.0) 55%,
            rgba(245, 240, 255, 0.55) 78%,
            rgba(245, 240, 255, 1.0) 100%);
}

/* Content — bottom-left with purple left bar */
.hero-content {
    position: absolute;
    z-index: 2;
    bottom: 22px;
    left: 0;
    right: 0;
    padding: 0 40px 0 22px;
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 600px;
}

.hero-bar {
    width: 3px;
    height: 40px;
    background: var(--purple-light);
    border-radius: 2px;
    flex-shrink: 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(25px, 3.1vw, 37px);
    font-weight: 700;
    color: var(--font-color);
    line-height: 1.2;
}

/* No sub/desc in this design */
.hero-sub,
.hero-desc {
    display: none;
}


/* ════════════════════
   RESPONSIVE
════════════════════ */

@media (min-width: 1101px) {
    .hero-content {
        left: 0;
        margin-left: 40px;
        /* bottom: 60px; */
        padding-left: 40px;
    }
}

@media (max-width: 1100px) and (min-width: 851px) {
    .hero-content {
        left: 32px;
        bottom: 20px;
    }
}

@media (max-width: 850px) and (min-width: 538px) {
    .hero {
        height: 48vw;
        min-height: 220px;
        max-height: 340px;
    }

    .hero-content {
        left: 24px;
        bottom: 16px;
    }

    .hero-bar {
        height: 40px;
    }
}

@media (max-width: 537px) {
    .hero {
        height: 52vw;
        min-height: 180px;
        max-height: 280px;
    }

    .hero-content {
        left: 16px;
        bottom: 12px;
        gap: 20px;
    }

    .hero-bar {
        height: 50px;
        width: 3px;
    }

    /* .hero-title {
        font-size: clamp(14px, 4vw, 20px);
    } */
}

@media (max-width: 380px) {
    .hero {
        height: 54vw;
        min-height: 160px;
    }

    .hero-content {
        left: 12px;
        bottom: 10px;
    }
}




/* ════════════════════
   FEATURED SECTION
════════════════════ */
.featured {
    width: 100%;
    padding: 48px 40px 60px;
    background: var(--white);
    margin-top: 5rem;
}

.featured-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

/* Left image — overlaps the card */
.featured-img-wrap {
    flex-shrink: 0;
    width: 320px;
    min-height: 340px;
    position: relative;
    /* z-index: 2; */
    margin-right: -30px;
    margin-top: -50px;
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(59, 7, 100, 0.28);
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Right purple card */
.featured-card {
    flex: 1;
    background: var(--purple-gradient);
    border-radius: 14px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 16px 48px rgba(59, 7, 100, 0.22);
    position: relative;
    z-index: 1;
}

.featured-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--white);
    text-transform: uppercase;
}

.featured-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
}

.accent {
    color: #a096fa;
    font-style: italic;
}

.featured-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-top: 2rem;
}

.featured-body p {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.65;
    text-align: justify;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: #4C00B0;
    color: var(--white);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(124, 58, 237, 0.38);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-left: auto;
    display: flex;
    width: fit-content;
}

.featured-btn:hover {
    background: #6f00ff;
    transform: translateY(-2px);
}

.arrow--img {
    width: 1rem;
    margin-top: 3px;
}

/* ════════════════════
   FEATURED REVERSE
════════════════════ */
.featured--reverse .featured-inner {
    flex-direction: row-reverse;
}

.featured--reverse .featured-img-wrap {
    margin-right: 0;
    margin-left: -30px;
}

/* ════════════════════
   RESPONSIVE — FEATURED
════════════════════ */
@media (max-width: 850px) {
    .featured {
        padding: 36px 24px 48px;
    }

    /* .featured-img-wrap {
        width: 160px;
        min-height: 260px;
        margin-right: -22px;
    } */

    .featured-card {
        /* padding: 28px 28px 28px calc(22px + 28px); */
        gap: 12px;
    }
}

@media (max-width: 700px) {
    .featured {
        margin-top: 2rem;
    }

    .featured-inner {
        flex-direction: row;
        /* align-items: center; */
    }

    .featured-img-wrap {
        width: 40%;
        min-height: 200px;
        max-height: 1000px;
        margin-right: 0;
        margin-bottom: -20px;
        margin-top: 0;
    }

    .featured-card {
        width: 100%;
        /* padding: 36px 22px 28px; */
        border-radius: 14px;
        gap: 12px;
        z-index: 2;
        margin-left: -2rem;
        margin-top: 3rem;
    }

    .featured-btn {
        align-self: flex-start;
    }

    .featured--reverse .featured-img-wrap {
        margin-right: 0;
        margin-left: -30px;
        margin-top: -30px;
    }

    .featured--reverse .featured-card {
        margin-left: 0;
        margin-top: 3rem;
    }
}

@media (max-width: 590px) {
    .featured-inner {
        flex-direction: column;
        align-items: center;
    }

    .featured-img-wrap {
        width: 90%;
        min-height: 200px;
        max-height: 220px;
        margin-right: 0;
        margin-bottom: -20px;
        z-index: 3;
        margin-top: 0;
    }

    .featured-card {
        width: 100%;
        /* padding: 36px 22px 28px; */
        border-radius: 14px;
        /* gap: 12px; */
        /* margin-left: 6.5rem; */
        /* margin-top: -3rem; */
        margin: 0;
    }

    .featured-btn {
        align-self: flex-start;
    }

    .featured--reverse .featured-inner {
        flex-direction: column;
    }

    .featured--reverse .featured-img-wrap {
        margin: 0;
        margin-bottom: -20px;
    }

    .featured--reverse .featured-card {
        margin: 0;
    }
}

@media (max-width: 380px) {
    .featured {
        padding: 28px 16px 40px;
    }

    .featured-card {
        padding: 2rem 1rem;
        margin: 0;
    }

    .featured-title {
        font-size: 22px;
    }
}