h1, h2 {
    margin-block-start: 0;
    margin-block-end: 0;
}


/* communities */

.activities-showcase {
    margin: 5% 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10%;
}

.empty-state {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.empty-card {
    background: var(--light-blue-color);
    border: 1px solid var(--light-grey-color-2);
    border-radius: 14px;
    padding: 2rem 2.5rem;
    text-align: center;
    color: var(--blue-color-2);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.activity-section {
    margin-bottom: 4rem;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-height: 655px;
}

/* Sticky stacking so next section appears over previous on scroll */
.stack-card {
    position: sticky;
    top: 0;
    z-index: var(--z, 1);
}

.stack-card + .stack-card {
    margin-top: -120px;
}

@media (max-width: 768px) {
    .stack-card + .stack-card {
        margin-top: -80px;
    }
}

.activity-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    pointer-events: none;
}

.activity-section:hover {
    transform: translateY(-8px);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.activity-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.activity-content {
    padding: 1rem 1rem 0.5rem;
    position: relative;
    z-index: 2;
}

.content-inner {
    margin: 0 auto;
}

.title-section {
    margin-bottom: 1rem;
    text-align: center;
}

.activity-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(
        135deg,
        currentColor 0%,
        currentColor 80%,
        transparent 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}

.title-decoration {
    display: flex;
    justify-content: center;
}

.underline-swoosh {
    width: min(150px, 60%);
    height: 20px;
    margin-left: 15%;
    margin-top: -2%;
}

.description-section {
    margin-bottom: 1.5rem;
}

.activity-description {
    font-family: var(--font-roboto);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
    opacity: 0.9;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button {
    font-family: var(--font-palmer-lake-print);
    padding: 3px 24px 10px 24px;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    border: none;
    border-radius: 22px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

.button-text {
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.cta-button:hover .button-shine {
    left: 100%;
}

.activity-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.image-container {
    position: relative;
    width: min(92%, 980px);
    height: 350px;
    overflow: hidden;
    margin-bottom: 12px;
}

@media (min-width: 1280px) {
    .image-container {
        height: 420px;
    }
}

.activity-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.1);
}


.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activity-section:hover .image-overlay {
    opacity: 1;
}

/* Responsive Design */
.activity-section + .activity-section {
    margin-top: -120px;
}

@media (max-width: 1200px) {
    .activity-title {
        font-size: 50px;
    }

    .underline-swoosh {
        width: min(100px, 58%);
        height: 24px;
    }

    .activity-description {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .activity-content {
        padding: 1.25rem 1rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .activity-section + .activity-section {
        margin-top: -80px;
    }

    .activities-showcase {
        padding: 0.75rem 0;
        margin: 20% 0;
    }


    .container {
        padding: 0 0.5rem;
    }

    .activity-section {
        margin-bottom: 1.25rem;
    }

    .activity-content {
        padding: 1rem 0.75rem 0.25rem;
    }

    .activity-title {
        font-size: 50px;
    }

    .underline-swoosh {
        width: min(80px, 65%);
        height: 22px;
    }

    .activity-description {
        font-size: 15px;
    }

    .cta-button {
        font-size: 25px;
        border-radius: 20px;
    }

    .image-container {
        width: 96%;
        height: 520px;
    }
}

@media (max-width: 480px) {
    .activity-content {
        padding: 0.75rem 0.5rem 0.25rem;
    }

    .activity-title {
        font-size: 50px;
        letter-spacing: 1px;
    }

    .underline-swoosh {
        width: min(120px, 70%);
        height: 18px;
        margin-left:40%;
        margin-top:-2%;
    }

    .cta-button {
        font-size: 25px;
        letter-spacing: 0.96px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.activity-section {
    animation: fadeInUp 0.6s ease-out;
}

.activity-section:nth-child(2) {
    animation-delay: 0.2s;
}

.activity-section:nth-child(3) {
    animation-delay: 0.4s;
}

.activity-section:nth-child(4) {
    animation-delay: 0.6s;
}

.spa-heading {
    text-align: center;
    margin: 24px 0 8px;
}

.section-heading {
    font-weight: 400;
    font-style: normal;
    font-size: 96px;
    line-height: 96px;
    letter-spacing: -0.02em;
    /* -2% */
    text-transform: uppercase;
    color: var(--brown-color-3);
    margin: 0;
}

/* events */
.events-section {
    padding: 80px 0;
    background: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.events-header {
    text-align: center;
    margin-bottom: 36px;
}

.events-title {
    font-size: 70px;
    font-weight: 700;
    color: var(--brown-color-3);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-style: italic;
}

.events-description {
    font-family: var(--font-roboto);
    font-weight: 300;
    font-size: 18px;
    color: var(--brown-color-3);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.7;
}

.events-swiper {
    width: 100%;
    height: 420px;
    position: relative;
}

.event-card {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
}

/* Left image */
.event-image {
    position: relative;
    width: 55%;
    height: 100%;
    flex-shrink: 0;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--light-grey-color-2);
}

/* Right content */
.event-info-card {
    position: relative;
    width: 45%;
    height: 100%;
    background: var(--light-brown-color-2);
    padding: 24px 28px;
    border-radius: 0;
    color: var(--black-color-2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 30px;
    color: var(--black-color-2);
}

.event-date,
.event-venue {
    opacity: 0.9;
}

.event-name {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 0.6;
}

.event-description-text {
    font-family: var(--font-roboto);
    font-weight: 300;
    font-size: 16px;
    /* overflow: hidden; */
}

.book-slot-btn {
    font-family: var(--font-palmer-lake-print);
    align-self: flex-start;
    background: var(--white-color);
    border: none;
    color: var(--blue-color-2);
    padding: 3px 24px 10px 24px;
    font-size: 35px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.6px;
    margin-top: 15%;
}

.book-slot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

/* Pagination below slider */
.events-pagination {
    position: relative !important;
    bottom: 20px !important;
    /* left: 50%; */
    transform: translateX(-50%);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.events-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.25);
    opacity: 1;
    margin: 0 5px;
}

.events-pagination .swiper-pagination-bullet-active {
    background: var(--blue-color-2);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .events-swiper {
        height: 520px;
    }

    .event-card {
        flex-direction: column;
    }

    .event-image,
    .event-info-card {
        width: 100%;
    }

    .event-image {
        height: 55%;
    }

    .event-info-card {
        height: 45%;
    }
}

@media (max-width: 768px) {
    .events-section {
        padding: 60px 0;
    }

    .events-title {
        font-size: 50px;
    }

    .events-description {
        font-size: 14px;
        padding: 0 20px;
        max-width: 640px;
    }

    .events-swiper {
        height: 560px;
    }
    .events-pagination {
        bottom: 70px !important;
    }
}

@media (max-width: 480px) {
    .events-section {
        padding: 40px 0;
    }

    .events-title {
        font-size: 40px;
    }

    .events-description {
        font-size: 14px;
        padding: 0 15px;
    }

    .events-swiper {
        height: auto;
        padding-bottom: 20px;
    }

    .event-card {
        flex-direction: column;
        border-radius: 0;
        overflow: hidden;
    }

    .event-image {
        width: 100%;
        height: 300px;
        flex-shrink: 0;
    }

    .event-info-card {
        width: 100%;
        height: auto;
        background: #d4d4b0; /* Light olive green */
        padding: 20px;
        gap: 12px;
    }

    .event-header {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .event-date,
    .event-venue {
        font-family: var(--font-roboto);
        font-weight: 400;
        color: var(--black-color-2);
    }

    .event-name {
        font-size: 24px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }

    .event-description-text {
        font-family: var(--font-roboto);
        font-weight: 300;
        font-size: 14px;
        line-height: 1.5;
        color: var(--black-color-2);
        margin-bottom: 16px;
    }

    .book-slot-btn {
        align-self: center;
        font-size: 24px;
        margin-top: 1%;
    }

    .book-slot-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

/* ours */

.community-section {
    padding: 60px 0 40px;
    background: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.community-header {
    text-align: center;
    margin-bottom: 22px;
}

.community-title {
    font-size: 80px;
    font-weight: 800;
    color: var(--brown-color-3);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-style: italic;
    margin: 0 0 10px 0;
}

.community-passage {
    max-width: 950px;
    margin: 0 auto 18px auto;
    font-family: var(--font-roboto);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--brown-color-3);
}

/* Swiper sizing */

.community-swiper {
    width: 100%;
    padding: 4px 2px;
}

.community-item {
    background: var(--white-color);
    /* border: 2px solid #D9D9D9; */
    padding: 8px;
}

.community-image,
.community-placeholder {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.community-placeholder {
    background: var(--light-grey-color-2);
}

/* Empty state */
.empty-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.empty-box {
    background: var(--light-blue-color);
    border: 1px solid var(--light-grey-color-2);
    border-radius: 14px;
    padding: 2rem 2.5rem;
    text-align: center;
    color: var(--blue-color-2);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.empty-box h2 {
    margin: 0 0 0.5rem;
}

.empty-box p {
    margin: 0;
    opacity: 0.8;
}

/* Pagination */
.community-pagination {
    position: static;
    margin: 16px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.community-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.25);
    opacity: 1;
    margin: 0 5px;
}

.community-pagination .swiper-pagination-bullet-active {
    background: var(--blue-color-2);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .community-image,
    .community-placeholder {
        height: 220px;
    }
}

@media (max-width: 640px) {
    .community-title {
        font-size: 40px;
        letter-spacing: 4.8px;
    }

    .community-passage {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .community-image,
    .community-placeholder {
        height: 200px;
    }
}
/* topcontent */
.community-hero {
    width: 100%;
    min-height: 340px;
    border-radius: 8px;
}

.community-hero-img {
    width: 100%;
    height: auto;
    object-fit: fill;
    border-radius: 8px;
    display: block;
}

.wellness_header {
    width: 100%;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--brown-color-3);
}

.wellness_title {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-bottom: 14px;
    font-weight: 800;
    font-size: 110px;
    line-height: 88px;
    letter-spacing: -2%;
    color: var(--brown-color-3);
}

.wellness_underline {
    position: absolute;
    left: 85%;
    transform: translateX(-50%);
    bottom: 2px;
    height: 15px;
    width: 260px;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.wellness_intro {
    max-width: 1000px;
    margin: 6px auto 0;
    color: var(--grey-color);
    font-family: var(--font-roboto);
    font-weight: 400;
    font-style: normal;
    font-size: 19px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
}

.wellness_intro p {
    margin: 0 0 4px;
}

/* Large tablets / small desktops */
@media (max-width: 1200px) {
    .community-hero {
        min-height: 300px;
    }
    .wellness_title {
        font-size: 90px;
        line-height: 72px;
    }
    .wellness_underline {
        width: 220px;
        left: 80%;
    }
    .wellness_intro {
        font-size: 17px;
        max-width: 900px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .community-hero {
        min-height: 260px;
    }
    .wellness_title {
        font-size: 80px;
        line-height: 60px;
    }
    .wellness_underline {
        width: 200px;
        left: 72%;
        bottom: 12px;
    }
    .wellness_intro {
        font-size: 16px;
        max-width: 92%;
    }
}

@media (max-width: 768px) {
    .community-hero {
        min-height: 220px;
    }
    .wellness_title {
        font-size: 70px;
    }

    .wellness_underline {
        width: 200px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
    }

    .wellness_intro {
        font-size: 12px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .community-hero {
        min-height: 114px;
    }
    .wellness_title {
        font-size: 60px;
        line-height: 44px;
    }
    .wellness_underline {
        width: 140px;
        left: 80%;
        bottom: 0px;
    }
    .wellness_intro {
        font-size: 12px;
        max-width: 94%;
    }
}
/* workshop */
.workshops-section {
    padding: 80px 0;
    background: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.workshops-header {
    text-align: center;
    margin-bottom: 36px;
}

.workshops-title {
    font-size: 70px;
    font-weight: 700;
    color: var(--brown-color-3);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-style: italic;
}

.lower-case{
    text-transform:capitalize !important;
}

.workshops-description {
    font-family: var(--font-roboto);
    font-weight: 300;
    font-size: 18px;
    color: var(--brown-color-3);
    max-width: 1000px;
    margin: 0 auto;
}

.workshops-swiper {
    width: 100%;
    height: 420px;
    position: relative;
}

.workshop-card {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
}

/* Left image */
.workshop-image {
    position: relative;
    width: 55%;
    height: 100%;
    flex-shrink: 0;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #ddd;
}

/* Right content */
.workshop-info-card {
    position: relative;
    width: 45%;
    height: 100%;
    background: var(--blue-color);
    padding: 24px 28px;
    border-radius: 0;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.workshop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 30px;
    color: var(--white-color);
}

.workshop-date,
.workshop-venue {
    opacity: 0.9;
}

.workshop-name {
    font-size: 35px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white-color);
}

.workshop-description-text {
    font-family: var(--font-roboto);
    font-weight: 300;
    font-size: 16px;
    /* overflow: hidden; */
    color: var(--white-color);
}

.workshop-book-slot-btn {
    font-family: var(--font-palmer-lake-print);
    align-self: flex-start;
    background: var(--white-color);
    border: none;
    color: var(--blue-color-2);
    padding: 12px 22px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 25px;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.6px;
    margin-top: 10%;
}

.workshop-book-slot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

/* Pagination below slider */
.workshops-pagination {
    position: relative !important;
    bottom: 20px !important;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.workshops-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.25);
    opacity: 1;
    margin: 0 5px;
}

.workshops-pagination .swiper-pagination-bullet-active {
    background: var(--blue-color-2);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .workshops-swiper {
        height: 520px;
    }

    .workshop-card {
        flex-direction: column;
    }

    .workshop-image,
    .workshop-info-card {
        width: 100%;
    }

    .workshop-image {
        height: 55%;
    }

    .workshop-info-card {
        height: 45%;
    }
}

@media (max-width: 768px) {
    .workshops-section {
        padding: 0;
    }

    .workshops-title {
        font-size: 50px;
    }

    .workshops-description {
        font-size: 14px;
        padding: 0 20px;
        max-width: 640px;
    }

    .workshops-swiper {
        height: 560px;
    }
}

@media (max-width: 480px) {


    .workshops-title {
        font-size: 40px;
    }

    .workshops-description {
        font-size: 14px;
        padding: 0 15px;
    }

    .workshops-swiper {
        height: auto;
        padding-bottom: 20px;
    }

    .workshop-card {
        flex-direction: column;
        border-radius: 0;
        overflow: hidden;
    }

    .workshop-image {
        width: 100%;
        height: 300px;
        flex-shrink: 0;
    }

    .workshop-info-card {
        width: 100%;
        height: auto;
        background: var(--blue-color);
        padding: 20px;
        gap: 12px;
        color: var(--black-color-2);
    }

    .workshop-header {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .workshop-date,
    .workshop-venue {
        font-family: var(--font-roboto);
        font-weight: 400;
        opacity: 1;
    }

    .workshop-name {
        font-size: 24px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }

    .workshop-description-text {
        font-family: var(--font-roboto);
        font-weight: 300;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    .workshops-pagination {
        bottom: 20px !important;
    }
}
