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

/* activity */

.movement-categories-header {
    width: 100%;
    text-align: center;
    margin-top: 0;
    padding: 8px 0 16px;
}

.movement-section-heading {
    font-family: var(--font-palmer-print);
    margin: 0;
    font-weight: 800;
    font-style: italic;
    font-size: 80px;
    line-height: 1;
    letter-spacing: 2px;
    color: var(--brown-color-3);
    text-transform: uppercase;
}
.section-subtitle{
    font-family: var(--font-roboto);
    font-size: 16px;
    font-weight: 400;
    color: var(--brown-color-2);
    margin: 0;
}

@media (max-width: 768px) {
    .movement-categories-header {
        margin-top: 2%;
;
    }
    .movement-section-heading {
        font-size: 40px;
        letter-spacing: 1.2px;
    }
    .section-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .movement-section-heading {
        font-size: 40px;
    }
}

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

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

.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: 60px;
    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-prin);
    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 {
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.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;
}
.movement-mobile-description {
    display: none;
    text-align: center;
    padding: 20px 16px 0;
}
@media (max-width: 768px) {
    .image-container {
        height: 470px;
    }

}

.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);
}

/* .activity-section:hover .activity-image {
    transform: scale(1.08);
} */

.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;
    }

    .container {
        padding: 20px;
    }

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

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

    .activity-title {
        font-size: 40px;

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

    .activity-description {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.55rem 1.1rem;
        font-size: 25px;
        border-radius: 20px;
    }

    .image-container {
        width: 96%;
    }
}
}

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

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

    .underline-swoosh {
        width: min(50px, 70%);
        height: 18px;
    }

    .cta-button {
        padding: 0.5rem 0.9rem;
        font-size: 25px;
        letter-spacing: 0.8px;
    }
}

/* 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;
}

/* bookslot */
.bookslot-hero {
    position: relative;
    width: 100%;
    min-height: 280px;
    height: 38vw;
    max-height: 420px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.bookslot-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bookslot-content {
    position: absolute;
    top: 50%;
    right: 6%;
    left: auto;
    transform: translateY(-50%);
    width: min(560px, 46vw);
    text-align: right;
    color: var(--brown-color-3);
}

.bookslot-heading {
    font-size: 50px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: right;
    padding-right: 0;
}

.bookslot-text {
    font-family: var(--font-roboto);
    font-size: 20px;
    line-height: 1.7;
    margin: 0 0 1rem auto;
    max-width: 720px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.bookslot-button {
    display: inline-block;
    padding: 3px 24px 10px 24px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    background: var(--white-color);
    backdrop-filter: blur(6px);
    color: var(--brown-color-3);
    font-weight: 600;
    font-size: 30px;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.bookslot-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    background: var(--white-color);
}

@media (max-width: 1200px) {
    .bookslot-content {
        right: 4%;
        width: 50vw;
        max-width: 640px;
    }

    .bookslot-heading {
        font-size: 45px;
    }

    .bookslot-text {
        font-size: 28px;
    }

    .bookslot-button {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .bookslot-content {
        right: 4%;
        width: 58vw;
        max-width: 680px;
    }

    .bookslot-heading {
        font-size: 40px;
    }

    .bookslot-text {
        font-size: 26px;
    }

    .bookslot-button {
        font-size: 26px;
        padding: 0 25px;
    }
}

@media (max-width: 768px) {
    .bookslot-hero {
        height: 400px;
        max-height: 400px;
        min-height: 350px;
    }

    .bookslot-content {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: center;
    }

    .bookslot-heading {
        font-size: 36px;
        text-align: center;
        margin-bottom: 1rem;
    }

    .bookslot-text {
        font-size: 22px;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .bookslot-button {
        font-size: 22px;
        padding: 0 24px;
    }
}

@media (max-width: 640px) {
    .bookslot-hero {
        height: 380px;
        max-height: 380px;
        min-height: 320px;
    }

    .bookslot-heading {
        font-size: 32px;
    }

    .bookslot-text {
        font-size: 20px;
    }

    .bookslot-button {
        font-size: 20px;
        padding: 0 22px;
    }
}

@media (max-width: 480px) {
    .bookslot-hero {
        min-height: 300px;
        height: 350px;
        max-height: 350px;
    }

    .bookslot-content {
        width: 92%;
    }

    .bookslot-heading {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
    }

    .bookslot-text {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .bookslot-button {
        padding: 0 20px;
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .bookslot-hero {
        height: 320px;
        max-height: 320px;
        min-height: 280px;
    }

    .bookslot-heading {
        font-size: 24px;
    }

    .bookslot-text {
        font-size: 16px;
    }

    .bookslot-button {
        font-size: 16px;
        padding: 0 18px;
    }
}
/* padel */
.padel-section-movement {
    background: var(--blue-color);
    padding: 30px 0 30px;
    color: var(--white-color);
}

.padel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.padel-title {
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.02em;
    font-size: 80px;
    line-height: 80px;
    margin: 0 0 12px 0;
}

.padel-subtitle {
    font-family: var(--font-roboto);
    font-size: 16px;
    max-width: 820px;
    margin: 0 auto 20px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    line-height: 20px;
    text-align: center;
    opacity: 0.95;
}

.padel-actions {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    margin: 10px 0 28px;
}

.padel-btn {
    position: relative;
    display: inline-block;
    padding: 0px 24px 5px 24px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 1.6px;
    line-height: 1.2;
    font-size: 35px;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Filled white pill */
.padel-btn--ghost {
    background: var(--white-color);
    color: var(--brown-color-3);
    border: 2px solid var(--white-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.padel-btn--ghost:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

/* Outlined with dotted inner ring */
.padel-btn--outline {
    color: var(--white-color);
    background: transparent;
    border: 2px solid var(--white-color);
}

.padel-btn--outline:hover {
    transform: translateY(-1px);
}

.padel-grid {
    display: grid;
    grid-template-columns: repeat(3, 381px);
    justify-content: center;
    gap: 22px;
    margin-top: 10px;
}

.padel-card {
    background: var(--blue-color);
    padding: 0;
    overflow: hidden;
    width: 381px;
    height: 522px;
}

.padel-card img {
    width: 381px;
    height: 522px;
    aspect-ratio: 381 / 522;
    object-fit: cover;
    display: block;
}

@media (max-width: 1200px) {
    .padel-grid {
        grid-template-columns: repeat(3, 320px);
    }
    .padel-card,
    .padel-card img {
        width: 320px;
        height: 438px;
    }
}
@media (max-width: 992px) {
    .padel-grid {
        grid-template-columns: repeat(3, 280px);
        gap: 18px;
    }
    .padel-card,
    .padel-card img {
        width: 280px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .padel-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        padding: 0 18px 10px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 18px;
        -webkit-overflow-scrolling: touch;
    }

    .padel-grid::-webkit-scrollbar {
        display: none;
    }

    .padel-card {
        flex: 0 0 75%;
        max-width: 75%;
        scroll-snap-align: start;
        overflow: hidden;
        scroll-snap-stop: always;
    }

    .padel-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 381 / 522;
        pointer-events: none;
    }

    .padel-actions {
        gap: 12px;
    }

    .padel-btn {
        padding: 5px 10px;
        font-size: 24px;
    }

    .padel-btn--outline::before {
        inset: 5px;
    }
}

@media (max-width: 480px) {
    .padel-grid {
        padding: 0 14px 12px;
        gap: 14px;
        scroll-padding: 0 14px;
    }

    .padel-card {
        flex: 0 0 85%;
        max-width: 85%;
    }
}
/* topcontent */

.movement-top-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    position: relative;
    flex-direction: column;
}

.movement-image {
    width: 100%;
    /* height: 400px; */
    object-fit: contain;
    display: block;
}

.movement-mobile-description {
    display: none;
    text-align: center;
    padding: 20px 16px 0;
}

.movement-mobile-description h2 {
    font-family: var(--font-palmer-print);
    font-size: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--brown-color-3);
}

.movement-mobile-description p {
    font-family: var(--font-roboto);
    font-size: 12px;
    line-height: 1.6;
    color: var(--brown-color-3);
    margin: 0 0 10px 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .movement-top-content {
        margin-top: 0;
    }
    .movement-image {
        /* height: 200px; */
    }
}

@media (max-width: 992px) {
    .movement-top-content {
        margin-top: 0;
    }
    .movement-image {
        /* height: 190px; */
    }
}

@media (max-width: 768px) {
    .movement-top-content {
        margin-top: 0;
    }
    .movement-image {
        /* height: 170px; */
    }
}

@media (max-width: 576px) {
    .movement-image {
        /* height: 150px; */
    }

    .movement-mobile-description {
        display: block;
    }
}

@media (max-width: 480px) {
    .movement-image {
        /* height: 115px; */
    }
}

@media (max-width: 360px) {
    .movement-image {
        /* height: 115px; */
    }

    .movement-mobile-description h2 {
        font-size: 18px;
    }

    .movement-mobile-description p {
        font-size: 13px;
    }
}

/* //////////////////////// sceduele //////////////////////// */
.sceduele-section-movement {
    background: var(--primary-color-2);
    padding: 50px 0;
}

.sceduele-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

.sceduele-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 34px;
    align-items: center;
    border-radius: 18px;
    padding: 24px;
}

.sceduele-media {
    overflow: hidden;
}

.sceduele-media img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    display: block;
}

.sceduele-content {
    text-align: center;
    padding: 20px 16px;
}

.sceduele-title {
    font-family: var(--font-palmer-print);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--brown-color-3);
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.sceduele-subtitle {
    font-family: var(--font-roboto);
    font-size: 16px;
    font-weight: 300;
    color: var(--brown-color-3);
    margin: 0 0 14px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sceduele-desc {
    font-family: var(--font-roboto);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--brown-color-2);
    margin: 0 0 30px 0;
}

.sceduele-btn {
    position: relative;
    display: inline-block;
    padding: 0px 24px 7px 24px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 1.6px;
    font-size: 35px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #332928;
    color:#fff;
    border:none;
    font-family: var(--font-palmer-print);
    cursor: pointer;
}

.healcode-link{
    display: none;
}


/* Responsive */
@media (max-width: 992px) {
    .sceduele-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 16px;
    }
    .sceduele-media img {
        max-height: 300px;
    }
}

@media (max-width: 560px) {
    .sceduele-section-movement {
        padding: 0
    }

    .sceduele-container {
        padding: 0;
    }

    .sceduele-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 26px 0;
        gap: 18px;
    }

    .sceduele-content {
        order: 1;
        padding: 0;
    }

    .sceduele-media {
        order: 2;
        width: 100%;
    }

    .sceduele-media img {
        max-height: none;
        height: 260px;
        object-fit: cover;
    }

    .sceduele-title {
        font-size: 40px
    }
    .sceduele-subtitle {
        font-size: 14px;
    }
    .sceduele-desc {
        font-size: 13px;
        line-height: 1.7;
    }
    .sceduele-btn {
        padding: 10px 26px;
    }
}
