/* ============================================
   WDT VENUE PAGE COMPONENTS
   Styles for Session Cards, Coach Carousel,
   Camp Cards, Open Days Grid, etc.
   Prefix: wdt-vp- (venue page)
   ============================================ */

/* ---------- TAB INNER / SECTION WRAPPER ---------- */
.wdt-vp-tab-inner {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 0 0 16px 16px;
}

/* ---------- SECTION HEADERS ---------- */
.wdt-vp-opendays-header {
    text-align: center;
    margin-bottom: 30px;
}

.wdt-vp-opendays-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #EF563F;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.wdt-vp-opendays-header p {
    font-size: 1.1rem;
    color: #EF563F;
    margin: 0;
}

/* ---------- OPEN DAYS / SESSION CARD GRID ---------- */
.wdt-vp-opendays-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    overflow: hidden;
}

.wdt-vp-openday-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(56, 72, 98, 0.06);
    transition: all 0.3s ease;
}

.wdt-vp-openday-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(56, 72, 98, 0.12);
}

.wdt-vp-openday-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.wdt-vp-openday-date {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.wdt-vp-openday-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.wdt-vp-openday-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wdt-vp-openday-btn {
    background: linear-gradient(135deg, #EF563F 0%, #C13923 100%);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.wdt-vp-openday-btn:hover {
    background: linear-gradient(135deg, #C13923 0%, #a83020 100%);
    transform: scale(1.02);
}

/* ---------- CAMP CARD ---------- */
.wdt-vp-camp-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(56, 72, 98, 0.06);
}

.wdt-vp-camp-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
}

.wdt-vp-camp-btn {
    background: linear-gradient(135deg, #EF563F 0%, #C13923 100%);
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wdt-vp-camp-btn:hover {
    background: linear-gradient(135deg, #C13923 0%, #a83020 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(239, 86, 63, 0.3);
}

/* ---------- COACH CAROUSEL ---------- */
.wdt-vp-coaches-hint {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.wdt-vp-coaches-hint span {
    color: #EF563F;
    font-weight: 700;
    margin-left: 5px;
}

.wdt-vp-coaches-wrapper {
    position: relative;
    margin: 0 -10px;
    padding: 0 10px;
}

.wdt-vp-coaches-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #EF563F 0%, #C13923 100%);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(239, 86, 63, 0.3);
    transition: all 0.3s ease;
}

.wdt-vp-coaches-arrow:hover {
    background: linear-gradient(135deg, #C13923 0%, #a83020 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(239, 86, 63, 0.4);
}

.wdt-vp-coaches-arrow.left { left: -5px; }
.wdt-vp-coaches-arrow.right { right: -5px; }

.wdt-vp-coaches-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 5px 20px;
    scrollbar-width: thin;
    scrollbar-color: #EF563F #ddd;
    scroll-behavior: smooth;
}

.wdt-vp-coaches-container::-webkit-scrollbar { height: 8px; }
.wdt-vp-coaches-container::-webkit-scrollbar-track { background: #eee; border-radius: 4px; }
.wdt-vp-coaches-container::-webkit-scrollbar-thumb { background: #EF563F; border-radius: 4px; }
.wdt-vp-coaches-container::-webkit-scrollbar-thumb:hover { background: #C13923; }

.wdt-vp-coach-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(56, 72, 98, 0.08);
    transition: all 0.3s ease;
    flex: 0 0 260px;
    min-width: 260px;
}

.wdt-vp-coach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(56, 72, 98, 0.12);
}

.wdt-vp-coach-image-wrap {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
}

.wdt-vp-coach-image-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
}

.wdt-vp-coach-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #EF563F;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}

.wdt-vp-coach-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.wdt-vp-coach-desc {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.wdt-vp-coach-booking {
    color: #888;
    font-size: 0.8rem;
    margin: 0 0 15px 0;
}

.wdt-vp-coach-btn {
    display: inline-block;
    background: linear-gradient(135deg, #EF563F 0%, #C13923 100%);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wdt-vp-coach-btn:hover {
    background: linear-gradient(135deg, #C13923 0%, #a83020 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 86, 63, 0.3);
    color: #ffffff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 800px) {
    .wdt-vp-opendays-grid { grid-template-columns: 1fr !important; gap: 15px; }
    .wdt-vp-openday-card { padding: 20px; }
}

@media (max-width: 600px) {
    .wdt-vp-tab-inner { padding: 20px 15px; }
    .wdt-vp-opendays-header h3 { font-size: 1.8rem; }
    .wdt-vp-openday-card { padding: 18px 15px; }
    .wdt-vp-openday-date { font-size: 1rem; }
    .wdt-vp-openday-desc { font-size: 0.85rem; }
    .wdt-vp-openday-btn { padding: 10px 16px; font-size: 0.8rem; width: 100%; text-align: center; }
    .wdt-vp-coach-card {
        flex: 0 0 calc(100% - 40px);
        min-width: calc(100% - 40px);
        scroll-snap-align: center;
    }
    .wdt-vp-coaches-container { scroll-snap-type: x mandatory; }
}


/* ============================================
   IMAGE CTA (Launch Month Style)
   Full-width image with gradient overlay,
   integrated text and booking button
   ============================================ */

.wdt-vp-image-cta {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.wdt-vp-image-cta-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bottom gradient overlay (default - like launch month) */
.wdt-vp-image-cta-overlay.bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(32,52,74,0.95) 0%, rgba(32,52,74,0.7) 60%, transparent 100%);
    padding: 80px 25px 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 15px;
    line-height: 1.6;
}

/* Full centered overlay (alternative) */
.wdt-vp-image-cta-overlay.full {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 52, 74, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    gap: 20px;
    line-height: 1.6;
}

.wdt-vp-image-cta-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.wdt-vp-image-cta-overlay.full .wdt-vp-image-cta-text h3 {
    font-size: 2.2rem;
}

.wdt-vp-image-cta-text p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin: 0;
}

.wdt-vp-image-cta-overlay.full .wdt-vp-image-cta-text p {
    font-size: 1.1rem;
}

.wdt-vp-image-cta-btn {
    background: linear-gradient(135deg, #EF563F 0%, #C13923 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
    flex-shrink: 0;
}

.wdt-vp-image-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(239, 86, 63, 0.4);
    color: #ffffff;
}

@media (max-width: 600px) {
    .wdt-vp-image-cta-overlay.bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px 20px;
    }
    .wdt-vp-image-cta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    .wdt-vp-image-cta-text h3 { font-size: 1.2rem; }
    .wdt-vp-image-cta-overlay.full .wdt-vp-image-cta-text h3 { font-size: 1.6rem; }
}
