/* ===== YOGA DAY CHALLENGE 2026 ===== */

.ydc26-page {
    --saffron: #E8621A;
    --saffron-light: #F5894A;
    --gold: #C9922A;
    --gold-light: #E8B84B;
    --ivory: #F7F4F0;
    --ivory-dark: #EDE7DD;
    --earth: #4A3728;
    --earth-light: #7A5C4A;
    --text-dark: #1A1A2E;
    --text-mid: #3D3050;
    --text-soft: #7A6E8A;
    --white: #FFFFFF;
    --shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.13);
    --radius: 16px;
    --radius-sm: 10px;
    --btn-primary-bg: #0A0048;
    --btn-primary-hover: #180E56;
}

/* ===== HERO BANNER ===== */
.ydc26-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0D0B1E 0%, #1A1640 60%, #2E2560 100%);
}

.ydc26-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.ydc26-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,11,30,0.88) 0%, rgba(26,22,64,0.75) 60%, rgba(46,37,96,0.55) 100%);
}

.ydc26-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
    color: var(--white);
}

.ydc26-hero-eyebrow {
    display: inline-block;
    background: rgba(232,178,75,0.20);
    border: 1px solid rgba(232,178,75,0.50);
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.ydc26-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--white);
}

.ydc26-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.80);
    margin-bottom: 32px;
    font-style: italic;
}

.ydc26-hero-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ydc26-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(232,178,75,0.50);
    border-radius: 0;
    padding: 4px 6px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.ydc26-hero-meta-item .icon {
    font-size: 1.1rem;
}

.ydc26-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ydc26-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.ydc26-btn-primary {
    background-color: #0A0048;
    color: #FFFFFF;
    border: 2px solid #0A0048;
}

.ydc26-btn-primary:hover {
    background-color: #180E56;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.ydc26-btn-outline {
    background: transparent;
    border: 2px solid #0A0048;
    color: #0A0048;
}

.ydc26-btn-outline:hover {
    background: #0A0048;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.ydc26-hero .ydc26-btn-primary,
.ydc26-cta-band .ydc26-btn-primary {
    background-color: #ED7543;
    border: 2px solid #ED7543;
    box-shadow: 0 4px 20px rgba(237,117,67,0.45);
}

.ydc26-hero .ydc26-btn-primary:hover,
.ydc26-cta-band .ydc26-btn-primary:hover {
    background-color: #d9622e;
    color: #FFFFFF;
}

.ydc26-hero .ydc26-btn-outline,
.ydc26-cta-band .ydc26-btn-outline {
    border-color: rgba(255,255,255,0.70);
    color: #FFFFFF;
    background: transparent;
}

.ydc26-hero .ydc26-btn-outline:hover,
.ydc26-cta-band .ydc26-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #FFFFFF;
}

/* ===== SECTION BASE ===== */
.ydc26-section {
    padding: 72px 24px;
}

.ydc26-section-ivory {
    background: var(--ivory);
}

.ydc26-section-white {
    background: var(--white);
}

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

.ydc26-section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.25;
}

.ydc26-section-desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 640px;
    line-height: 1.7;
}

/* ===== INTRO FOLD ===== */
.ydc26-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.ydc26-intro-heading {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.ydc26-intro-video {
    width: 100%;
}

.ydc26-intro-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: var(--radius);
    display: block;
    box-shadow: var(--shadow-lg);
}

.ydc26-intro-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.ydc26-meta-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--ivory-dark);
    border: 1px solid rgba(201,146,42,0.30);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.88rem;
    color: var(--earth);
    font-weight: 500;
}

.ydc26-intro-desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 24px;
}

.ydc26-price-block {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.ydc26-price-offer-tag {
    background: #FEF3C7;
    border: 1px solid var(--gold-light);
    color: var(--earth);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.ydc26-price-old {
    font-size: 1.1rem;
    color: var(--text-soft);
    text-decoration: line-through;
}

.ydc26-price-new {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--saffron);
}

.ydc26-register-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.ydc26-register-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ydc26-register-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--saffron);
    line-height: 1;
}

.ydc26-video-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
    background: var(--text-dark);
}

.ydc26-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== TEACHERS ===== */
.ydc26-teachers-section {
    padding-bottom: 48px;
}

.ydc26-teachers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.ydc26-teacher-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.ydc26-teacher-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--ivory-dark);
    box-shadow: 0 6px 28px rgba(201,146,42,0.20);
    flex-shrink: 0;
}

.ydc26-teacher-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.ydc26-teacher-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.ydc26-teacher-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 640px) {
    .ydc26-teachers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== PRACTICE CARDS ===== */
.ydc26-practice-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ydc26-practice-card {
    background: var(--ivory);
    border: 1px solid rgba(201,146,42,0.15);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ydc26-practice-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.ydc26-practice-duration {
    display: inline-block;
    background: var(--saffron);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
}

.ydc26-practice-icon {
    font-size: 3.2rem;
    line-height: 1;
}

.ydc26-practice-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.ydc26-practice-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .ydc26-practice-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== PARTICIPANT NOTICE BLOCK ===== */
.ydc26-notice-block {
    background: #FFF8F0;
    border: 1px solid rgba(232, 98, 26, 0.20);
    border-top: 4px solid var(--saffron);
    border-radius: var(--radius-sm);
    padding: 36px 48px;
}

.ydc26-notice-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* ===== NOTES LIST ===== */
.ydc26-notes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ydc26-notes-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.ydc26-notes-list li::before {
    content: '✦';
    color: var(--saffron);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 5px;
}

/* ===== WHAT'S INCLUDED — same as original yoga challenge pages ===== */
.yoga-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
    max-width: 900px;
    margin-inline: auto;
}

.yoga-cards-container .yoga-card {
    position: relative;
}

.yoga-cards-container .yoga-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.yoga-cards-container .yoga-card div {
    text-align: center;
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 10px;
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .yoga-cards-container {
        grid-template-columns: 1fr;
    }
}

/* ===== ROADMAP / 7 DAYS ===== */
.ydc26-roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

.ydc26-roadmap-badge {
    background: var(--ivory-dark);
    border: 1px solid rgba(201,146,42,0.30);
    color: var(--earth);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 100px;
}

.ydc26-days-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ydc26-day-card {
    background: var(--white);
    border: 1px solid rgba(201,146,42,0.15);
    border-radius: var(--radius);
    padding: 22px 14px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: default;
}

.ydc26-day-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.ydc26-day-card:nth-child(1) { border-top: 3px solid #E8621A; }
.ydc26-day-card:nth-child(2) { border-top: 3px solid #D4732A; }
.ydc26-day-card:nth-child(3) { border-top: 3px solid #C9922A; }
.ydc26-day-card:nth-child(4) { border-top: 3px solid #B89B35; }
.ydc26-day-card:nth-child(5) { border-top: 3px solid #8A9440; }
.ydc26-day-card:nth-child(6) { border-top: 3px solid #5C8050; }
.ydc26-day-card:nth-child(7) { border-top: 3px solid #3D7060; }

.ydc26-day-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-soft);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ydc26-day-icon {
    font-size: 2.4rem;
    line-height: 1;
}

.ydc26-koshas-icon {
    position: relative;
    display: inline-block;
    width: 2.3rem;
    height: 2.3rem;
}

.ydc26-koshas-icon .kosha-layer {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ydc26-day-date {
    font-size: 0.95rem;
    color: var(--saffron);
    font-weight: 600;
}

.ydc26-day-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.ydc26-day-desc {
    font-size: 0.97rem;
    color: var(--text-soft);
    line-height: 1.55;
}

/* ===== MORNING FLOW TIMELINE ===== */
.ydc26-flow-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    flex-wrap: wrap;
}

.ydc26-flow-item {
    background: var(--white);
    border: 1px solid rgba(201,146,42,0.18);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ydc26-flow-time {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--saffron);
    letter-spacing: 0.5px;
}

.ydc26-flow-icon {
    font-size: 2.6rem;
    line-height: 1;
}

.ydc26-flow-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.ydc26-flow-arrow {
    font-size: 1.8rem;
    color: var(--gold);
    padding: 0 8px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .ydc26-flow-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .ydc26-flow-item {
        max-width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 16px 20px;
    }
    .ydc26-flow-time { min-width: 80px; }
    .ydc26-flow-arrow {
        transform: rotate(90deg);
        text-align: center;
    }
}

/* ===== TESTIMONIALS ===== */
.ydc26-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

.ydc26-testimonial-card {
    background: var(--ivory);
    border: none;
    border-radius: var(--radius);
    padding: 36px 36px 32px;
    position: relative;
    box-shadow: var(--shadow);
}

.ydc26-testimonial-quote {
    display: block;
    font-size: 5rem;
    line-height: 0.6;
    color: var(--saffron);
    font-family: Georgia, serif;
    margin-bottom: 20px;
    opacity: 0.4;
}

.ydc26-testimonial-card p {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.ydc26-testimonial-author {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(201,146,42,0.2);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    font-style: normal;
    letter-spacing: 0.3px;
}

@media (max-width: 640px) {
    .ydc26-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ ===== */
.ydc26-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.ydc26-faq-item {
    background: var(--white);
    border: 1px solid rgba(201,146,42,0.15);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ydc26-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    gap: 16px;
    user-select: none;
}

.ydc26-faq-question:hover {
    color: var(--saffron);
}

.ydc26-faq-question i {
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.ydc26-faq-item.open .ydc26-faq-question i {
    transform: rotate(180deg);
}

.ydc26-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.70;
    border-top: 0px solid rgba(201,146,42,0.12);
    transition: max-height 0.35s ease, padding 0.35s ease, border-top-width 0.35s ease;
}

.ydc26-faq-item.open .ydc26-faq-answer {
    max-height: 300px;
    padding: 14px 22px 18px;
    border-top-width: 1px;
}

/* ===== BOTTOM CTA BAND ===== */
.ydc26-cta-band {
    background: linear-gradient(135deg, #0D0B1E 0%, #1A1640 60%, #2E2560 100%);
    padding: 64px 24px;
    text-align: center;
    color: var(--white);
}

.ydc26-cta-band h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.ydc26-cta-band p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.ydc26-cta-band .ydc26-price-new {
    color: var(--gold-light);
}

/* Hide the base template's bottom padding spacer */
.events-base-element {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ydc26-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ydc26-intro-grid {
        grid-template-columns: 1fr;
    }
    .ydc26-days-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .ydc26-section {
        padding: 48px 16px;
    }
}

@media (max-width: 480px) {
    .ydc26-days-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ydc26-register-btns,
    .ydc26-hero-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .ydc26-btn {
        justify-content: center;
    }
}
