/* top slider */
.top_imagecontainer {
    width: 100%;
    height: 745px;
    position: relative;
    margin-top: -80px;
}

.top_image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slider_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive design */
@media (max-width: 768px) {
    .top_imagecontainer {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .top_imagecontainer {
        height: 400px;
    }
}

/* wellness */

.wellness_container {
    background-color: var(--light-brown-color);
    text-align: center;
    min-height: 450px;
    border-bottom: 2px solid var(--s3);
}

/* Header Section */

.wellness_title {
    font-size: 80px;
    font-weight: bold;
    color: var(--brown-color-3);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.wellness_underline {
    position: absolute;
    bottom: 10px;
    left: 88%;
    transform: translateX(-50%);
    width: auto;
    height: 16px;
    object-fit: contain;
}

.wellness_intro {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

.wellness_intro p {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    color: var(--brown-color-3);
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 20px;
}

/* Video Section */
.video_section {
    margin-bottom: 0; /* Remove gap below video section so white starts right below the line */
    position: relative;
}

/* .video_section::before,
.video_section::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.video_section::before {
    left: 0;
}

.video_section::after {
    right: 0;
} */

.video_container {
    position: relative;
    width: 786px;
    height: 399px;
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--light-blue-color);
    overflow: hidden;
    z-index: 1;
    margin-top: -200px;
}

.wellness_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    background-color: var(--light-blue-color);
}

/* Make everything below the horizontal line white */
.lower_section {
    background: var(--white-color);
    margin-bottom: 5%;
}

.play_button {
    font-family: var(--font-palmer-print);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    /* background-color: white; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--white-color);
}

.play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    /* background-color: rgba(0, 0, 0, 0.6); */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.play_button:hover {
    /* background-color: rgba(0, 0, 0, 0.8); */
    transform: translate(-50%, -50%) scale(1.1);
}

/* Play Icon (Triangle) */
.play_icon {
    width: 0;
    height: 0;
    border-left: 30px solid var(--white-color);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    margin-left: 8px;
}

/* Pause Icon (Two Bars) */
.pause_icon {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.pause_icon span {
    width: 8px;
    height: 40px;
    background-color: var(--white-color);
    border-radius: 2px;
}

/* Pillars Section - Responsive Flex Layout */
.pillars_section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin: 10px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.pillar {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 20px 10px;
}

.pillar_title {
    font-size: 50px;
    font-weight: 400;
    font-style: italic;
    color: var(--brown-color-3);
    text-align: center;
}

.pillar_font {
    font-family: var(--font-instrument);
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    color: var(--brown-color-3);
    line-height: 1.5;
    margin-bottom: 8px;
    text-align: center;
}

.pillar_text {
    font-family: var(--font-roboto);
    font-weight: 300;
    font-size: 16px;
    color: var(--brown-color-3);
    line-height: 1;
    margin-bottom: 8px;
    text-align: center;
}

/* CTA Button */
.cta_section {
    margin-top: 20px;
    text-align: center;
}

.cta_button {
    font-family: var(--font-palmer-print);
    padding: 3px 24px 10px 24px;
    font-size: 35px;
    font-weight: 600;
    background-color: var(--brown-color-3);
    color: var(--white-color);
    border: none;
    border-radius: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta_button:hover {
    background-color: var(--brown-color-3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wellness_title {
        font-size: 4.5rem;
    }

    .wellness_underline {
        height: 14px;
        bottom: -8px;
    }

    .wellness_intro p {
        font-size: 16px;
    }

    .video_container {
        width: 700px;
        height: 360px;
    }

    .pillar_title {
        font-size: 36px;
    }

    .pillar_text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .wellness_container {
        padding: 30px 15px;
    }

    .wellness_title {
        font-size: 3rem;
    }

    .wellness_underline {
        height: 12px;
        bottom: -6px;
        left: 85%;
    }

    .wellness_intro p {
        font-size: 14px;
    }

    .video_container {
        width: 90%;
        max-width: 600px;
        height: 320px;
        margin-top: -150px;
    }

    /* Tablet: 2x2 layout */
    .pillars_section {
        gap: 20px;
    }

    .pillar {
        flex: 0 0 calc(50% - 15px);
        min-width: 200px;
    }

    .pillar_title {
        font-size: 1.92rem;
    }
}

@media (max-width: 480px) {
    .wellness_title {
        font-size: 2.4rem;
    }

    .wellness_underline {
        height: 10px;
        bottom: -5px;
        left: 82%;
    }

    .wellness_intro p {
        font-size: 14px;
    }

    .video_container {
        width: 85%;
        height: 250px;
    }

    .video_section::before,
    .video_section::after {
        display: none;
    }

    .play_button {
        width: 60px;
        height: 60px;
    }

    .play_icon {
        border-left: 20px solid var(--white-color);
        border-top: 14px solid transparent;
        border-bottom: 15px solid transparent;
        margin-left: 6px;
    }

    .pause_icon span {
        width: 4px;
        height: 20px;
    }

    /* Mobile: Dark background with 2x2 grid layout */
    .lower_section {
        background: var(--white-color);
        padding: 40px 20px 20px;
        margin-top: -10%;
        margin-bottom: 5%;
    }

    .pillars_section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 20px;
        margin: 0;
        padding: 0;
        max-width: 100%;
    }

    .pillar {
        flex: none;
        min-width: auto;
        max-width: 100%;
        padding: 15px 10px;
    }

    .pillar_title {
        font-size: 28px;
        font-weight: 700;
        font-style: normal;
        text-align: left;
        margin-bottom: 12px;
    }

    .pillar_font {
        font-family: var(--font-instrument);
        font-style: italic;
        font-weight: 300;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
        text-align: left;
    }

    .pillar_text {
        font-family: var(--font-roboto);
        font-weight: 300;
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 0;
        text-align: left;
    }

    .cta_section {
        text-align: center;
    }

    .cta_button {
        padding: 12px 32px;
        font-size: 24px;
        font-weight: 700;
        background-color: #2a2a2a;
        color: var(--white-color);
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 360px) {
    .wellness_title {
        font-size: 2rem;
    }

    .wellness_underline {
        height: 8px;
        bottom: -4px;
        left: 80%;
    }

    .wellness_intro p {
        font-size: 12px;
    }

    .video_container {
        height: 220px;
    }

    .play_button {
        width: 50px;
        height: 50px;
    }

    .play_icon {
        border-left: 15px solid var(--white-color);
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
    }

    .lower_section {
        padding: 30px 15px 50px;
    }

    .pillars_section {
        gap: 25px 15px;
        margin: 30px auto 30px;
    }

    .pillar {
        padding: 12px 8px;
    }

    .pillar_title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .pillar_font {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .pillar_text {
        font-size: 12px;
    }

    .cta_button {
        padding: 10px 24px;
        font-size: 16px;
    }
}
.classes-scrollable-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
    margin-right: -10px;
}

.classes-scrollable-container::-webkit-scrollbar {
    width: 8px;
}

.classes-scrollable-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.classes-scrollable-container::-webkit-scrollbar-thumb {
    background: var(--brown-color-2);
    border-radius: 4px;
}

.classes-scrollable-container::-webkit-scrollbar-thumb:hover {
    background: var(--brown-color-3);
}

/* Responsive adjustments for scrollable classes */
@media (max-width: 768px) {
    .classes-scrollable-container {
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .classes-scrollable-container {
        max-height: 400px;
    }
}

/* game */
.game-container {
    background-color: var(--light-brown-color);
}
.main-banner {
    padding: 20px 20px;
    text-align: center;
}

.banner-text {
    font-family: var(--font-roboto);
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.grid-item {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border-radius: 0;

    --bg-scale: 1.4;
}

.content-box {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.section-title {
    font-weight: bold;
    font-size: 40px;
    color: var(--brown-color-3);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    line-height: 0.7;
}

.section-description {
    font-family: var(--font-roboto);
    font-size: 16px;
    color: var(--brown-color-3);
    margin: 0;
    line-height: 1.4;
}

.section-image {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 0;
}

/* Background colors for each text section */
.padel-section,
.creator-section,
.matcha-section,
.spa-section {
    /* background: #F5F0EB; */
    border: 1px solid #000;
}

.matcha-section {
    border: 1px solid #000;
}

/* Common bubble base */
.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.65;
    /* Rotation animation stays, scale comes from --bg-scale which JS updates on scroll */
    animation: bubbleRotate 30s linear infinite;
    will-change: transform;
}

/* Per-section bubble colors */
.padel-section .bubble {
    background: var(--light-blue-color);
}

.creator-section .bubble {
    background: var(--light-blue-color);
}

.matcha-section .bubble {
    background: var(--light-blue-color);
}

.spa-section .bubble {
    background: var(--light-blue-color);
}

/* Positions and base sizes per section */
.padel-section .bubble-1 {
    width: 280px;
    height: 280px;
    top: -120px;
    right: -120px;
    transform: translate(0, 0) rotate(var(--rotation, 0deg))
        scale(var(--bg-scale, 1.8));
}

.padel-section .bubble-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -60px;
    transform: translate(0, 0) rotate(var(--rotation, 0deg))
        scale(var(--bg-scale, 1.8));
}

.creator-section .bubble-1 {
    width: 280px;
    height: 280px;
    top: -140px;
    right: -140px;
    transform: translate(0, 0) rotate(var(--rotation, 0deg))
        scale(var(--bg-scale, 1.8));
}

.creator-section .bubble-2 {
    width: 220px;
    height: 220px;
    bottom: -110px;
    right: -90px;
    transform: translate(0, 0) rotate(var(--rotation, 0deg))
        scale(var(--bg-scale, 1.8));
}

/* Matcha: center-ish bubbles behind text */
.matcha-section .bubble-1 {
    width: 320px;
    height: 320px;
    top: 20%;
    left: 40%;
    transform: translate(-50%, -50%) rotate(var(--rotation, 0deg))
        scale(var(--bg-scale, 1.8));
}

.matcha-section .bubble-2 {
    width: 220px;
    height: 220px;
    top: 65%;
    left: 65%;
    transform: translate(-50%, -50%) rotate(var(--rotation, 0deg))
        scale(var(--bg-scale, 1.8));
}

.spa-section .bubble-1 {
    width: 240px;
    height: 240px;
    top: -60px;
    right: -40px;
    transform: translate(0, 0) rotate(var(--rotation, 0deg))
        scale(var(--bg-scale, 1.8));
}

.spa-section .bubble-2 {
    width: 180px;
    height: 180px;
    bottom: -70px;
    right: 40px;
    transform: translate(0, 0) rotate(var(--rotation, 0deg))
        scale(var(--bg-scale, 1.8));
}

@keyframes bubbleRotate {
    from {
        --rotation: 0deg;
    }

    to {
        --rotation: 360deg;
    }
}

/* Register the custom property so it can animate smoothly */
@property --rotation {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0deg;
}

/* Pause rotation when scrolled enough, scale still controlled via --bg-scale */
.grid-item.scrolled .bubble {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 0;
    }

    .banner-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.4;
    }

    .content-box {
        padding: 20px;
        justify-content: space-between;
    }

    .grid-item {
        min-height: 250px;
    }

    /* Reorder items for mobile: 2x2 pattern */
    /* Row 1: Padel text (left), Padel image (right) */
    .grid-item:nth-child(1) {
        grid-row: 1;
        grid-column: 1;
    }

    .grid-item:nth-child(2) {
        grid-row: 1;
        grid-column: 2;
    }

    /* Row 2: Matcha image (left), Matcha text (right) */
    .grid-item:nth-child(5) {
        grid-row: 2;
        grid-column: 1;
    }

    .grid-item:nth-child(6) {
        grid-row: 2;
        grid-column: 2;
    }

    /* Row 3: Creator text (left), Creator image (right) */
    .grid-item:nth-child(3) {
        grid-row: 3;
        grid-column: 1;
    }

    .grid-item:nth-child(4) {
        grid-row: 3;
        grid-column: 2;
    }

    /* Row 4: Spa image (left), Spa text (right) */
    .grid-item:nth-child(7) {
        grid-row: 4;
        grid-column: 1;
    }

    .grid-item:nth-child(8) {
        grid-row: 4;
        grid-column: 2;
    }

    /* Hide bubbles on mobile */
    .bubble {
        display: none;
    }
}

/* atpaus */

.atpaus-section {
    background: var(--s5);
    padding: 60px 16px 80px 16px;
    margin-top: 10%;
}

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

.atpaus-heading {
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 80px;
    margin: 0 0 8px 0;
}

.atpaus-subheading {
    font-family: var(--font-roboto);
    font-size: 24px;
    color: var(--light-grey-color);
    margin: 0 0 28px 0;
}

.atpaus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
}

.atpaus-card {
    background: var(--s3);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
}

.atpaus-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.atpaus-card:hover {
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
.atpaus-card-link:focus-visible {
    outline: 3px solid #7fb069;
    outline-offset: 4px;
}

.atpaus-card-inner {
    padding: 18px;
    position: relative; /* host bubbles behind content */
}

.atpaus-card-title {
    font-weight: 700;
    font-size: 40px;
    color: var(--black-color);
    margin: 0 0 8px 0;
    text-transform: none;
    position: relative;
    z-index: 1;
}

.atpaus-card-desc {
    font-family: var(--font-roboto);
    max-height: 100px;
    min-height: 100px;
    font-size: 15px;
    color: var(--black-color);
    margin: 0 0 14px 0;
    line-height: 1.7;
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
}

.atpaus-card-media {
    position: relative;
    width: 100%;
    height: 200px;
    background: var(--grey-color-2);
    border-radius: 6px;
    overflow: visible; /* allow bubbles to show outside the image area */
    border: 1px solid rgba(0, 0, 0, 0.15);
    margin-left: auto;
    margin-right: 0;
}

.atpaus-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1; /* keep image above bubbles */
}

/* Rotating background circles for At Paus cards */
.atpaus-card-media {
    position: relative;
    overflow: hidden;
}
.atpaus-bubbles {
    /* full-card background layer for bubbles */
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.atpaus-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 1;
    will-change: transform;
    transform: scale(var(--bubble-scale, 1.8));
    z-index: 0;
}

.atpaus-bubble::after {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 1px solid rgba(51, 41, 40, 0.08); /* inner faint ring */
}

/* Card 1: two circles (visible behind paragraph & image) */
.atpaus-grid .atpaus-card:nth-child(1) .atpaus-bubble.b1 {
    width: 260px;
    height: 260px;
    top: -150px;
    right: -100px;
}
.atpaus-grid .atpaus-card:nth-child(1) .atpaus-bubble.b2 {
    width: 200px;
    height: 200px;
    bottom: 150px;
    left: -40px;
}

/* Card 2: three circles */
.atpaus-grid .atpaus-card:nth-child(2) .atpaus-bubble.b1 {
    width: 280px;
    height: 280px;
    top: -110px;
    right: -120px;
}
.atpaus-grid .atpaus-card:nth-child(2) .atpaus-bubble.b2 {
    width: 220px;
    height: 220px;
    bottom: -80px;
    right: -70px;
}
.atpaus-grid .atpaus-card:nth-child(2) .atpaus-bubble.b3 {
    width: 180px;
    height: 180px;
    top: 35%;
    left: -60px;
}

/* Card 3: three circles */
.atpaus-grid .atpaus-card:nth-child(3) .atpaus-bubble.b1 {
    width: 240px;
    height: 240px;
    top: -40px;
    right: -30px;
}
.atpaus-grid .atpaus-card:nth-child(3) .atpaus-bubble.b2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    right: 30px;
}
.atpaus-grid .atpaus-card:nth-child(3) .atpaus-bubble.b3 {
    width: 200px;
    height: 200px;
    top: 45%;
    left: -80px;
}

.atpaus-decor-dot {
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(169, 185, 143, 0.55);
    border: 2px solid var(--green-color-2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) inset;
}

.atpaus-cta-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin-top: 26px;
}

.atpaus-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 3px 24px 10px 24px;
    border-radius: 999px;
    font-size: 35px;
    line-height: 1.2;
    text-decoration: none;
    transition:
        transform 0.15s ease,
        box-shadow 0.2s ease;
    will-change: transform;
}

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

.atpaus-btn-outline {
    background: var(--white-color);
    color: var(--brown-color-dark);

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.atpaus-btn-solid {
    color: var(--light-grey-color);
    border: 1px solid var(--light-brown-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.atpaus-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-color-3);
    color: var(--white-color);
    font-weight: 700;
    font-size: 25px;
    border: 2px solid var(--green-color-4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .atpaus-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .atpaus-grid {
        grid-template-columns: 1fr;
    }
    .atpaus-card-media {
        height: 220px;
    }
    .atpaus-subheading {
        font-size: 14px;
    }
    .atpaus-heading {
        font-size: 40px;
    }
}

/* bookslot */

.find-class-container {
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid #e6e3dd;
    border-radius: 8px;
    padding: 28px 30px;
}
.find-class-section {
    background: #F0EFEB;
    padding: 20px 20px;
}
.section-header {
    background: #F0EFEB;
    text-align: center;
}

.section-main-title {
    font-family: var(--font-palmer-print);
    font-size: 110px;
    font-weight: 700;
    color: var(--brown-color-2);
    text-transform: none;
}

.section-subtitle {
    font-family: var(--font-roboto);
    font-size: 16px;
    font-weight: 400;
    color: var(--brown-color-2);
    margin: 0;
}
.find-class-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.find-class-title {
    font-family: var(--font-roboto);
    font-size: 30px;
    font-weight: 700;
    color: var(--brown-color-2);
    margin: 0;
}

.find-class-filters {
    display: flex;
    gap: 10px;
}

.filter-dropdown {
    font-family: var(--font-roboto);
    padding: 8px 12px;
    border: 1px solid #e6e3dd;
    border-radius: 8px;
    color: var(--brown-color-2);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    min-width: 120px;
}

/* Hide mobile filter button on desktop */
.mobile-filter-btn {
    display: none;
}

.filter-dropdown:hover {
    border-color: var(--brown-color-2);
}

.filter-dropdown:focus {
    outline: none;
    border-color: var(--brown-color-2);
    box-shadow: 0 0 0 3px rgba(43, 38, 36, 0.1);
}

.calendar-section {
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 18px;
}

.month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.month-title {
    font-family: var(--font-roboto);
    font-size: 20px;
    font-weight: 700;
    color: var(--brown-color-2);
    margin: 0;
}

.full-calendar-link {
    font-size: var(--font-roboto);
    color: var(--brown-color-2);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.full-calendar-link:hover {
    text-decoration: underline;
}

.week-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--brown-color-3);
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
}

.nav-btn:hover {
    background: var(--light-grey-color);
}

.week-days {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.day-item {
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    width: 65px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--grey-color);
}

.day-item:hover {
    background: #2b2624;
    color: var(--brown-color-dark);
}

.day-item.active {
    background: var(--brown-color-3);
    color: #fff;
    border-color: var(--brown-color-3);
}

.day-label {
    font-family: var(--font-roboto);
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-color);
    margin-bottom: 2px;
    display: block;
}

.day-item.active .day-label,
.day-item:hover .day-label {
    color: var(--white-color);
}

.day-number {
    font-family: var(--font-roboto);
    font-size: 14px;
    font-weight: 700;
    color: var(--grey-color);
    display: block;
}

.day-item.active .day-number,
.day-item:hover .day-number {
    color: var(--white-color);
}

.selected-date-header {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    gap: 20px;
    border-bottom: 1px solid var( --black-color);
}

.selected-date-header h3 {
    font-family: var(--font-roboto);
    font-size: 12px;
    font-weight: 700;
    color: var(--brown-color-2);
    margin: 0 0 6px 0;
}

.timezone-note {
    color: var(--grey-color);
    font-family: var(--font-roboto);
    font-size: 10px;
    margin: 0;
}

.classes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.class-card {
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eeeae3;
}

.class-card:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.class-info {
    flex: 1;
}

.class-time {
    font-family: var(--font-roboto);
    font-size: 12px;
    font-weight: 700;
    color: #2b2624;
    margin-bottom: 2px;
}

.class-duration {
    font-family: var(--font-roboto);
    font-size: 10px;
    color: var(--grey-color);
    margin-bottom: 6px;
}

.class-name {
    font-family: var(--font-roboto);
    font-size: 12px;
    font-weight: 700;
    color: var(--brown-color-2);
    margin-bottom: 4px;
}

.class-instructor {
    font-family: var(--font-roboto);
    font-size: 10px;
    color: var(--grey-color);
    margin-bottom: 6px;
}

.class-details-btn {
    font-family: var(--font-roboto);
    background: none;
    border: none;
    color: var(--brown-color-2);
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.class-details-btn:hover {
    color: var(--black-color);
}

.class-location {
    text-align: center;
    margin: 0 30px;
}

.location-name {
    font-family: var(--font-roboto);
    font-size: 10px;
    font-weight: 500;
    color: var(--grey-color);
}

.class-status {
    text-align: center;
    margin: 0 20px;
}

.spots-left {
    font-family: var(--font-roboto);
    font-size: 10px;
    font-weight: 500;
    color: var(--orange-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.class-action {
    min-width: 140px;
    text-align: right;
}

.book-btn {
    background: var(--brown-color-3);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    width: auto;
}

.book-btn:hover {
    background: var(--brown-color-3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.book-btn.unavailable {
    background: #e9e6e0;
    color: #9a9590;
    cursor: not-allowed;
}

.book-btn.unavailable:hover {
    transform: none;
    box-shadow: none;
    background: #e8e8e8;
}

.loading-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--grey-color);
    font-size: 25px;
}

.loading-state i {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.class-details {
    font-family: var(--font-roboto);
    margin-top: 15px;
    padding: 18px;
    background: var(--white-color);
    border-radius: 6px;
    font-size: 15px;
    color: var(--grey-color);
    line-height: 1.7;
}

.error-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--red-color);
    font-size: 17px;
}

/* Large Tablet */
@media (max-width: 1024px) {
    .find-class-section {
        padding: 60px 15px;
    }

    .find-class-container {
        max-width: 900px;
        padding: 40px 30px;
    }

    .section-main-title {
        font-size: 3.5rem;
    }

    .find-class-title {
        font-size: 3rem;
    }

    .month-title {
        font-size: 1.6rem;
    }

    .full-calendar-link {
        font-size: 35px;
    }

    .selected-date-header h3 {
        font-size: 1.6rem;
    }

    .timezone-note {
        font-size: 18px;
    }

    .day-item {
        width: 85px;
        height: 85px;
    }

    .day-label {
        font-size: 14px;
    }

    .day-number {
        font-size: 18px;
    }

    .class-time {
        font-size: 1.3rem;
    }

    .class-name {
        font-size: 1.1rem;
    }

    .loading-state {
        font-size: 22px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .find-class-section {
        padding: 50px 15px;
    }

    .find-class-container {
        padding: 30px 20px;
        max-width: 100%;
    }



    .section-main-title {
        font-size: 2.8rem;
        letter-spacing: 0.05em;
    }

    .find-class-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .find-class-title {
        font-size: 2rem;
    }

    .find-class-filters {
        width: 100%;
        flex-direction: column;
    }

    .filter-dropdown {
        width: 100%;
        font-size: 14px;
    }

    .calendar-section {
        padding: 20px 15px;
    }

    .month-header {
        margin-bottom: 20px;
    }

    .month-title {
        font-size: 1.4rem;
    }

    .full-calendar-link {
        font-size: 20px;
    }

    .week-navigation {
        gap: 10px;
    }

    .nav-btn {
        font-size: 18px;
        padding: 8px;
    }

    .week-days {
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .day-item {
        width: 75px;
        height: 75px;
        flex-shrink: 0;
        padding: 15px;
    }

    .day-label {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .day-number {
        font-size: 16px;
    }

    .selected-date-header h3 {
        font-size: 1.4rem;
    }

    .timezone-note {
        font-size: 16px;
    }

    .loading-state {
        font-size: 20px;
    }

    .class-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    .class-time {
        font-size: 1.2rem;
    }

    .class-name {
        font-size: 1rem;
    }

    .class-instructor,
    .location-name {
        font-size: 14px;
    }

    .class-location,
    .class-status {
        margin: 0;
        text-align: left;
    }

    .class-action {
        width: 100%;
    }

    .book-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .find-class-section {
        padding: 20px 15px;
    }

    .find-class-container {
        padding: 20px 15px;
        border-radius: 0;
        border: none;
    }

    .section-header {
        padding: 0 15px;
    }

    .section-main-title {
        font-size:40px;
        font-weight: 700;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .find-class-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        gap: 10px;
    }

    .find-class-title {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

    .find-class-filters {
        display: flex;
        gap: 8px;
        align-items: end;
    }

    .filter-dropdown {
        display: none; /* Hide dropdowns on mobile */
    }

    /* Mobile filter button */
    .mobile-filter-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        background: transparent;
        border: none;
        font-family: var(--font-roboto);
        font-size: 14px;
        font-weight: 500;
        color: var(--brown-color-2);
        cursor: pointer;
        padding: 0;
    }

    .mobile-filter-btn i {
        font-size: 14px;
    }

    .mobile-filter-btn:hover {
        color: var(--brown-color-3);
    }

    .calendar-section {
        padding: 15px 0;
        margin-bottom: 15px;
    }

    .month-header {
        margin-bottom: 15px;
        padding: 0;
    }

    .month-title {
        font-size: 16px;
        font-weight: 700;
    }

    .full-calendar-link {
        font-size: 18px;
        gap: 4px;
    }

    .full-calendar-link i {
        font-size: 18px;
    }

    .week-navigation {
        gap: 8px;
    }

    .nav-btn {
        font-size: 14px;
        padding: 4px;
    }

    .week-days {
        gap: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 5px;
    }

    .day-item {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        padding: 8px;
    }

    .day-label {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .day-number {
        font-size: 12px;
    }

    .selected-date-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-bottom: 12px;
        margin-bottom: 15px;
        border-bottom: 1px solid #e6e3dd;
    }

    .selected-date-header h3 {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
    }

    .timezone-note {
        font-size: 11px;
        color: var(--grey-color);
        margin: 0;
    }

    .classes-scrollable-container {
        max-height: none;
        padding-right: 0;
        margin-right: 0;
    }

    .classes-list {
        gap: 0;
    }

    .class-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 0;
        border-bottom: 1px solid #eeeae3;
    }

    .class-card:last-child {
        border-bottom: none;
    }

    .class-info {
        width: 100%;
    }

    .class-time {
        font-size: 14px;
        font-weight: 700;
        color: #2b2624;
        margin-bottom: 4px;
    }

    .class-duration {
        font-size: 12px;
        color: var(--grey-color);
        margin-bottom: 8px;
    }

    .class-name {
        font-size: 14px;
        font-weight: 700;
        color: var(--brown-color-2);
        margin-bottom: 4px;
    }

    .class-instructor {
        font-size: 12px;
        color: var(--grey-color);
        margin-bottom: 8px;
    }

    .class-details-btn {
        font-size: 12px;
        color: var(--brown-color-2);
        margin-bottom: 8px;
    }

    .class-location {
        margin: 0;
        text-align: left;
        width: 100%;
    }

    .location-name {
        font-size: 12px;
        color: var(--grey-color);
    }

    .class-status {
        margin: 0;
        text-align: left;
        width: 100%;
    }

    .spots-left {
        font-size: 12px;
    }

    .class-action {
        width: 100%;
        margin-top: 8px;
    }

    .book-btn {
        font-size: 14px;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        border-radius: 6px;
    }

    .loading-state {
        padding: 40px 15px;
        font-size: 14px;
    }

    .loading-state i {
        font-size: 24px;
    }

    .class-details {
        padding: 12px;
        font-size: 13px;
        margin-top: 10px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .section-main-title {
        font-size: 1.8rem;
    }

    .find-class-container {
        padding: 20px 12px;
    }

    .find-class-title {
        font-size: 1.3rem;
    }

    .month-title {
        font-size: 1.1rem;
    }

    .full-calendar-link {
        font-size: 14px;
    }

    .day-item {
        width: 50px;
        height: 50px;
    }

    .day-label {
        font-size: 10px;
        margin-bottom: 1px;
    }

    .day-number {
        font-size: 12px;
    }

    .timezone-note {
        font-size: 12px;
    }

    .loading-state {
        font-size: 14px;
    }

    .selected-date-header h3 {
        font-size: 1.1rem;
    }

    .class-time {
        font-size: 1rem;
    }

    .class-name {
        font-size: 0.9rem;
    }

    .book-btn {
        font-size: 12px;
        padding: 10px 18px;
    }
}

/* philosophy */

.philosophy-section {
    background: var(--white-color);
    padding: 20px 20px;
    text-align: center;
}

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

.philosophy-title {
    font-size: 80px;
    font-weight: 700;
    color: var(--brown-color-3);
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.philosophy-description {
    font-family: "Roboto", Regular;
    font-weight: 300;
    font-size: 15px;
    color: var(--brown-color-3);
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.philosophy-gallery {
    display: block; /* single panoramic banner */
    margin-bottom: 40px;
}

.philosophy-image {
    height: 455px; /* panoramic crop height */
    overflow: hidden;
    /* border-radius: 10px; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: var(--white-color);
}

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

.philosophy-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.philosophy-btn {
    padding: 0px 24px 6px 24px;
    border-radius: 25px;
    font-size: 35px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.philosophy-btn-dark {
    background: var(--brown-color-3);
    color: var(--white-color);
    border: none;

}

.philosophy-btn-dark:hover {
    background: var(--brown-color-3);
    transform: translateY(-2px);
}

.philosophy-btn-light {
    background: var(--white-color);
    color: var(--brown-color-3);
    border: 2px solid #332928;
}

.philosophy-btn-light:hover {
    background: var(--brown-color-3);
    color: var(--white-color);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .philosophy-image {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .philosophy-gallery {
        /* keep single banner on mobile */
    }
    .philosophy-image {
        height: 110px;
    }

    .philosophy-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .philosophy-title {
        font-size: 2.4rem;
    }

    .philosophy-description {
        font-size: 1.08rem;
    }
    .philosophy-btn {
        font-size: 25px;
    }
}

/* missout */

.missout-section {
    background:#a069a2;
    padding: 20px;
    text-align: center;
}

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

.missout-title {
    font-size: 80px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.missout-subtitle {
    font-family: var(--font-roboto);
    font-size: 18px;
    color: var(--white-color);
    font-weight: 400;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto 0px auto;
}

.missout-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.missout-image img {
    width: 100%;
    height: auto;
    display: block;
}

.missout-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.missout-btn {
    padding: 0px 24px 5px 24px;
    border-radius: 50px;
    font-size: 35px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.2;
}

.missout-btn-primary {
    background: var(--white-color);
    color: var(--black-color);
    border: none;
}

.missout-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.missout-btn-secondary {
    background: var(--blue-color);
    color: var(--white-color);
    border: 2px solid #87ceeb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.missout-btn-secondary:hover {
    background: #357abd;
    border-color: #4a90e2;
    transform: translateY(-2px);
}

.missout-logo {
    width: 50px;
    height: 50px;
    background: var(--green-color-5);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .missout-title {
        font-size: 2.2rem;
    }

    .missout-subtitle {
        font-size: 15px;
    }

    .missout-actions {
        flex-direction: row;
        gap: 20px;
    }

    .missout-logo {
        order: -1;
    }
    .missout-btn {
        font-size: 25px;

    }

}


/* workshop */
.workshops-section {
    margin: 40px 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: #fff;
    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;
    }
}