/* ============================================================================
   Dixmont Recreation v2 — Modern Design System
   Target path: home/static/home/css/rec_v2.css
   Loaded alongside rec.css; all classes prefixed `rec-v2-` so no conflicts.
   ============================================================================ */

/* Design tokens ------------------------------------------------------------ */
:root {
    --rec-v2-navy:        #1A2E52;
    --rec-v2-navy-dark:   #0F1A2E;
    --rec-v2-navy-darker: #060B16;
    --rec-v2-gold:        #C9A227;
    --rec-v2-gold-light:  #E6C35C;
    --rec-v2-gold-dark:   #9A7A1D;

    --rec-v2-off-white:   #FAFBFC;
    --rec-v2-cream:       #FDFBF4;
    --rec-v2-border:      #E2E8F0;
    --rec-v2-text:        #1A202C;
    --rec-v2-text-muted:  #4A5568;
    --rec-v2-text-light:  #718096;

    --rec-v2-green:       #2F855A;
    --rec-v2-red:         #C53030;
    --rec-v2-orange:      #DD6B20;

    --rec-v2-shadow-sm:   0 2px 4px rgba(15, 26, 46, 0.06);
    --rec-v2-shadow:      0 4px 16px rgba(15, 26, 46, 0.10);
    --rec-v2-shadow-lg:   0 12px 32px rgba(15, 26, 46, 0.18);
    --rec-v2-shadow-xl:   0 24px 48px rgba(15, 26, 46, 0.25);

    --rec-v2-radius-sm:   6px;
    --rec-v2-radius:      12px;
    --rec-v2-radius-lg:   20px;
    --rec-v2-radius-xl:   32px;
}

/* Typography --------------------------------------------------------------- */
.rec-v2-body {
    background: var(--rec-v2-off-white);
    color: var(--rec-v2-text);
}

.rec-v2-display {
    font-family: 'Bricolage Grotesque', 'Inter', -apple-system, sans-serif;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
}

.rec-v2-headline {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.rec-v2-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--rec-v2-gold);
    color: var(--rec-v2-navy-dark);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
}

/* Hero — full-bleed image with gradient overlay --------------------------- */
.rec-v2-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: white;
    background-color: var(--rec-v2-navy-dark);
    background-size: cover;
    background-position: center 30%;
    overflow: hidden;
}

.rec-v2-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(6, 11, 22, 0.92)  0%,
        rgba(15, 26, 46, 0.80)  40%,
        rgba(26, 46, 82, 0.45) 100%
    );
    z-index: 1;
}

.rec-v2-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--rec-v2-gold);
    z-index: 2;
}

.rec-v2-hero > .container {
    position: relative;
    z-index: 3;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.rec-v2-hero-eyebrow {
    display: inline-block;
    padding: 7px 16px;
    background: var(--rec-v2-gold);
    color: var(--rec-v2-navy-dark);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.rec-v2-hero h1 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 0.98;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.rec-v2-hero .lead {
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    max-width: 640px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.rec-v2-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Hero variant — centered */
.rec-v2-hero-center > .container {
    text-align: center;
}
.rec-v2-hero-center .lead {
    margin-left: auto;
    margin-right: auto;
}
.rec-v2-hero-center .rec-v2-hero-actions {
    justify-content: center;
}

/* Buttons ------------------------------------------------------------------ */
.rec-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.9rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.rec-v2-btn-primary {
    background: var(--rec-v2-gold);
    color: var(--rec-v2-navy-dark);
    border-color: var(--rec-v2-gold);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.35);
}
.rec-v2-btn-primary:hover {
    background: var(--rec-v2-gold-light);
    border-color: var(--rec-v2-gold-light);
    color: var(--rec-v2-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.5);
}

.rec-v2-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
}
.rec-v2-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.9);
    color: white;
    transform: translateY(-2px);
}

.rec-v2-btn-solid {
    background: var(--rec-v2-navy);
    color: white;
    border-color: var(--rec-v2-navy);
}
.rec-v2-btn-solid:hover {
    background: var(--rec-v2-navy-dark);
    border-color: var(--rec-v2-navy-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--rec-v2-shadow-lg);
}

.rec-v2-btn-outline-navy {
    background: transparent;
    color: var(--rec-v2-navy);
    border-color: var(--rec-v2-navy);
}
.rec-v2-btn-outline-navy:hover {
    background: var(--rec-v2-navy);
    color: white;
    transform: translateY(-2px);
}

/* Stat strip --------------------------------------------------------------- */
.rec-v2-stat-strip {
    background: var(--rec-v2-navy);
    color: white;
    padding: 2.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rec-v2-stat {
    text-align: center;
    padding: 0.5rem 0.75rem;
}

.rec-v2-stat-number {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--rec-v2-gold);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.rec-v2-stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

/* Sections ----------------------------------------------------------------- */
.rec-v2-section {
    padding: 4.5rem 0;
}

.rec-v2-section-alt {
    background: var(--rec-v2-off-white);
}

.rec-v2-section-header {
    margin-bottom: 3rem;
}

.rec-v2-section-title {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3.8vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--rec-v2-navy);
    margin-bottom: 0.65rem;
}

.rec-v2-section-subtitle {
    font-size: 1.1rem;
    color: var(--rec-v2-text-muted);
    max-width: 640px;
    margin-bottom: 0;
    line-height: 1.55;
}

/* Sport cards — photographic background ----------------------------------- */
.rec-v2-sport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.rec-v2-sport-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: var(--rec-v2-radius-lg);
    overflow: hidden;
    background-color: var(--rec-v2-navy);
    background-size: cover;
    background-position: center;
    color: white;
    text-decoration: none;
    box-shadow: var(--rec-v2-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rec-v2-sport-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rec-v2-shadow-xl);
    color: white;
}

.rec-v2-sport-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 26, 46, 0.00)  0%,
        rgba(15, 26, 46, 0.05) 30%,
        rgba(15, 26, 46, 0.55) 65%,
        rgba(15, 26, 46, 0.96) 100%);
    z-index: 1;
    transition: background 0.25s ease;
}

.rec-v2-sport-card:hover::before {
    background: linear-gradient(180deg,
        rgba(26, 46, 82, 0.15)  0%,
        rgba(15, 26, 46, 0.30) 30%,
        rgba(15, 26, 46, 0.75) 65%,
        rgba(15, 26, 46, 0.98) 100%);
}

.rec-v2-sport-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    z-index: 2;
}

.rec-v2-sport-card-icon {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    color: white;
    font-size: 1.4rem;
    z-index: 2;
}

.rec-v2-sport-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 4px 11px;
    background: var(--rec-v2-gold);
    color: var(--rec-v2-navy-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    z-index: 2;
}

.rec-v2-sport-card-name {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.rec-v2-sport-card-meta {
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rec-v2-sport-card-meta .dot {
    opacity: 0.5;
}

.rec-v2-sport-card--future {
    opacity: 0.75;
}

/* Season headers ----------------------------------------------------------- */
.rec-v2-season-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--rec-v2-border);
}

.rec-v2-season-header h3 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rec-v2-navy);
    margin: 0;
    flex: 1;
    letter-spacing: -0.015em;
}

.rec-v2-season-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rec-v2-navy);
    color: var(--rec-v2-gold);
    border-radius: 12px;
    font-size: 1.2rem;
}

/* Open positions banner v2 ------------------------------------------------- */
.rec-v2-positions-banner {
    background: linear-gradient(90deg, var(--rec-v2-gold) 0%, var(--rec-v2-gold-light) 100%);
    color: var(--rec-v2-navy-dark);
    padding: 1rem 0;
    border-top: 3px solid var(--rec-v2-navy);
    border-bottom: 3px solid var(--rec-v2-navy);
}

.rec-v2-positions-scroll {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.rec-v2-positions-label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rec-v2-position-item {
    font-weight: 600;
    padding: 5px 13px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    font-size: 0.9rem;
}

.rec-v2-position-btn {
    margin-left: auto;
    background: var(--rec-v2-navy);
    color: white !important;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.15s;
}
.rec-v2-position-btn:hover {
    background: var(--rec-v2-navy-dark);
    color: white;
}

/* Feature cards (facilities, info boxes) ----------------------------------- */
.rec-v2-feature-card {
    background: white;
    border-radius: var(--rec-v2-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--rec-v2-shadow-sm);
    border: 1px solid var(--rec-v2-border);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.rec-v2-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--rec-v2-shadow-lg);
}

.rec-v2-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rec-v2-cream);
    color: var(--rec-v2-navy);
    border-radius: 14px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.rec-v2-feature-card h5 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--rec-v2-navy);
    margin-bottom: 0.5rem;
}

.rec-v2-feature-card p {
    color: var(--rec-v2-text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.rec-v2-feature-card .meta {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--rec-v2-border);
    color: var(--rec-v2-text-light);
    font-size: 0.85rem;
}

/* Action cards (hub quick links) ------------------------------------------ */
.rec-v2-action-card {
    display: block;
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: var(--rec-v2-radius-lg);
    color: white;
    text-decoration: none;
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--rec-v2-shadow);
}

.rec-v2-action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rec-v2-shadow-xl);
    color: white;
}

.rec-v2-action-card-register {
    background: linear-gradient(135deg, #1a6b3a 0%, #2f855a 60%, #38a169 100%);
}

.rec-v2-action-card-volunteer {
    background: linear-gradient(135deg, #1A2E52 0%, #2c4a7c 60%, #3e67a8 100%);
}

.rec-v2-action-card-contact {
    background: linear-gradient(135deg, #733c0f 0%, #C9A227 60%, #E6C35C 100%);
}

.rec-v2-action-card h5 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.015em;
    position: relative;
    z-index: 1;
}

.rec-v2-action-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.rec-v2-action-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.rec-v2-action-card .fa-arrow-right {
    transition: transform 0.2s;
}

.rec-v2-action-card:hover .fa-arrow-right {
    transform: translateX(5px);
}

.rec-v2-action-card-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 9rem;
    opacity: 0.13;
    line-height: 1;
    transform: rotate(-8deg);
    z-index: 0;
}

/* Coach card --------------------------------------------------------------- */
.rec-v2-coach-card {
    text-align: center;
    padding: 1.75rem 1.5rem;
    background: white;
    border-radius: var(--rec-v2-radius);
    border: 1px solid var(--rec-v2-border);
    box-shadow: var(--rec-v2-shadow-sm);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.rec-v2-coach-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--rec-v2-shadow-lg);
}

.rec-v2-coach-avatar {
    width: 92px;
    height: 92px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--rec-v2-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rec-v2-navy);
    font-size: 2.25rem;
    border: 3px solid var(--rec-v2-gold);
    object-fit: cover;
    overflow: hidden;
}

.rec-v2-coach-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rec-v2-coach-card h5 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--rec-v2-navy);
    margin-bottom: 0.55rem;
}

.rec-v2-coach-role {
    display: inline-block;
    padding: 4px 12px;
    background: var(--rec-v2-gold);
    color: var(--rec-v2-navy-dark);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
}

.rec-v2-coach-role-asst {
    background: var(--rec-v2-cream);
    color: var(--rec-v2-navy);
    border: 1px solid var(--rec-v2-border);
}

/* Team card ---------------------------------------------------------------- */
.rec-v2-team-card {
    background: white;
    border-radius: var(--rec-v2-radius);
    padding: 1.5rem;
    border: 1px solid var(--rec-v2-border);
    box-shadow: var(--rec-v2-shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.rec-v2-team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--rec-v2-shadow-lg);
    color: inherit;
}

.rec-v2-team-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.rec-v2-team-card h5 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--rec-v2-navy);
    margin: 0;
    letter-spacing: -0.015em;
}

.rec-v2-team-meta {
    color: var(--rec-v2-text-muted);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
    flex: 1;
}

.rec-v2-team-meta > div {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.rec-v2-team-meta i {
    width: 16px;
    color: var(--rec-v2-gold);
    text-align: center;
}

.rec-v2-team-capacity {
    background: var(--rec-v2-border);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.rec-v2-team-capacity-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rec-v2-gold) 0%, var(--rec-v2-gold-light) 100%);
    border-radius: 3px;
    transition: width 0.4s;
}

.rec-v2-team-capacity-text {
    font-size: 0.78rem;
    color: var(--rec-v2-text-muted);
    font-weight: 600;
}

/* CTA Banner --------------------------------------------------------------- */
.rec-v2-cta-banner {
    background: linear-gradient(135deg, var(--rec-v2-navy) 0%, var(--rec-v2-navy-dark) 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: var(--rec-v2-radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--rec-v2-shadow-lg);
}

.rec-v2-cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--rec-v2-gold) 0%, transparent 68%);
    opacity: 0.3;
}

.rec-v2-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, var(--rec-v2-gold) 0%, transparent 70%);
    opacity: 0.15;
}

.rec-v2-cta-banner-content {
    position: relative;
    z-index: 1;
}

.rec-v2-cta-banner h3 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.rec-v2-cta-banner p {
    opacity: 0.92;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.55;
}

.rec-v2-cta-banner .rec-v2-hero-actions {
    justify-content: center;
}

/* Breadcrumb v2 ------------------------------------------------------------ */
.rec-v2-breadcrumb-wrap {
    background: var(--rec-v2-off-white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--rec-v2-border);
}

.rec-v2-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.rec-v2-breadcrumb .breadcrumb-item {
    font-size: 0.9rem;
}

.rec-v2-breadcrumb .breadcrumb-item a {
    color: var(--rec-v2-text-muted);
    text-decoration: none;
    font-weight: 500;
}

.rec-v2-breadcrumb .breadcrumb-item a:hover {
    color: var(--rec-v2-gold-dark);
}

.rec-v2-breadcrumb .breadcrumb-item.active {
    color: var(--rec-v2-navy);
    font-weight: 700;
}

/* Meta chips --------------------------------------------------------------- */
.rec-v2-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 6px 14px;
    background: var(--rec-v2-cream);
    color: var(--rec-v2-navy);
    border: 1px solid var(--rec-v2-border);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-right: 0.4rem;
}

.rec-v2-chip-gold {
    background: var(--rec-v2-gold);
    color: var(--rec-v2-navy-dark);
    border-color: var(--rec-v2-gold-dark);
}

.rec-v2-chip-navy {
    background: var(--rec-v2-navy);
    color: white;
    border-color: var(--rec-v2-navy-dark);
}

.rec-v2-chip-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
}

/* Info list (sport "what kids learn") ------------------------------------- */
.rec-v2-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rec-v2-info-list li {
    display: flex;
    gap: 1.1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--rec-v2-border);
}

.rec-v2-info-list li:last-child {
    border-bottom: none;
}

.rec-v2-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rec-v2-gold);
    color: var(--rec-v2-navy-dark);
    border-radius: 12px;
    font-size: 1.05rem;
}

.rec-v2-info-list li h6 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 800;
    color: var(--rec-v2-navy);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.rec-v2-info-list li p {
    color: var(--rec-v2-text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0;
}

/* Calendar wrap ------------------------------------------------------------ */
.rec-v2-calendar-wrap {
    background: white;
    border-radius: var(--rec-v2-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--rec-v2-shadow);
    border: 1px solid var(--rec-v2-border);
}

/* Event modal (replaces alert()) ------------------------------------------ */
.rec-v2-event-modal .modal-content {
    border-radius: var(--rec-v2-radius-lg);
    border: none;
    box-shadow: var(--rec-v2-shadow-xl);
    overflow: hidden;
}

.rec-v2-event-modal .modal-header {
    background: var(--rec-v2-navy);
    color: white;
    border-bottom: 3px solid var(--rec-v2-gold);
    padding: 1.25rem 1.5rem;
}

.rec-v2-event-modal .modal-title {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 800;
}

.rec-v2-event-modal .modal-body {
    padding: 1.5rem;
}

.rec-v2-event-modal .btn-close {
    filter: invert(1);
    opacity: 0.85;
}

.rec-v2-event-detail {
    display: flex;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--rec-v2-border);
}

.rec-v2-event-detail:last-child {
    border-bottom: none;
}

.rec-v2-event-detail-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rec-v2-cream);
    color: var(--rec-v2-navy);
    border-radius: 10px;
    font-size: 0.95rem;
}

.rec-v2-event-detail-body strong {
    display: block;
    color: var(--rec-v2-text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.rec-v2-event-detail-body span {
    color: var(--rec-v2-navy);
    font-weight: 500;
}

/* Schedule list (team page alt to calendar) ------------------------------- */
.rec-v2-schedule-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--rec-v2-border);
    border-radius: var(--rec-v2-radius);
    margin-bottom: 0.85rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.rec-v2-schedule-item:hover {
    box-shadow: var(--rec-v2-shadow);
    transform: translateX(3px);
}

.rec-v2-schedule-date {
    flex-shrink: 0;
    width: 76px;
    text-align: center;
    padding: 0.75rem 0;
    background: var(--rec-v2-navy);
    color: white;
    border-radius: 10px;
}

.rec-v2-schedule-date .month {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rec-v2-gold);
}

.rec-v2-schedule-date .day {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
}

.rec-v2-schedule-body {
    flex: 1;
}

.rec-v2-schedule-body h6 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--rec-v2-navy);
    margin-bottom: 0.25rem;
}

.rec-v2-schedule-body .meta {
    font-size: 0.85rem;
    color: var(--rec-v2-text-muted);
}

/* ============================================================
   FORMS
============================================================ */

.rec-v2-form-page {
    padding: 4rem 0;
    background: var(--rec-v2-off-white);
}

.rec-v2-form-intro {
    margin-bottom: 2.5rem;
    text-align: center;
}

.rec-v2-form-intro h1 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--rec-v2-navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.rec-v2-form-intro p {
    color: var(--rec-v2-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.rec-v2-form-card {
    background: white;
    border-radius: var(--rec-v2-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--rec-v2-shadow);
    border: 1px solid var(--rec-v2-border);
}

@media (max-width: 575.98px) {
    .rec-v2-form-card {
        padding: 1.5rem;
    }
}

/* Form section with numbered badge */
.rec-v2-form-section {
    margin-bottom: 2.5rem;
}

.rec-v2-form-section + .rec-v2-form-section {
    padding-top: 2rem;
    border-top: 1px solid var(--rec-v2-border);
}

.rec-v2-form-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rec-v2-form-section-number {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rec-v2-navy);
    color: var(--rec-v2-gold);
    border-radius: 12px;
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
}

.rec-v2-form-section-title {
    flex: 1;
}

.rec-v2-form-section-title h4 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--rec-v2-navy);
    margin: 0;
    letter-spacing: -0.015em;
}

.rec-v2-form-section-title p {
    color: var(--rec-v2-text-muted);
    font-size: 0.88rem;
    margin: 0.15rem 0 0;
}

/* Override Bootstrap form labels inside form card */
.rec-v2-form-card .form-label {
    font-weight: 700;
    color: var(--rec-v2-navy);
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.rec-v2-form-card .form-label .text-danger {
    font-weight: 800;
}

/* Override Bootstrap form controls inside form card */
.rec-v2-form-card .form-control,
.rec-v2-form-card .form-select {
    border: 2px solid var(--rec-v2-border);
    border-radius: 10px;
    padding: 0.7rem 0.95rem;
    font-size: 0.95rem;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
    background: var(--rec-v2-off-white);
    color: var(--rec-v2-text);
}

.rec-v2-form-card .form-control:focus,
.rec-v2-form-card .form-select:focus {
    border-color: var(--rec-v2-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
    background: white;
    outline: none;
}

.rec-v2-form-card .form-control::placeholder {
    color: var(--rec-v2-text-light);
}

.rec-v2-form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Override Bootstrap form check (checkbox / radio) */
.rec-v2-form-card .form-check {
    padding: 1rem 1rem 1rem 3rem;
    background: var(--rec-v2-cream);
    border: 1px solid var(--rec-v2-border);
    border-radius: 10px;
    margin-bottom: 0.85rem;
}

.rec-v2-form-card .form-check-input {
    margin-left: -2.25rem;
    margin-top: 0.2rem;
    width: 1.4rem;
    height: 1.4rem;
    border: 2px solid var(--rec-v2-text-light);
    cursor: pointer;
}

.rec-v2-form-card .form-check-input:checked {
    background-color: var(--rec-v2-gold);
    border-color: var(--rec-v2-gold-dark);
}

.rec-v2-form-card .form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
    border-color: var(--rec-v2-gold);
}

.rec-v2-form-card .form-check-label {
    font-size: 0.95rem;
    color: var(--rec-v2-text);
    line-height: 1.45;
}

/* Field error message */
.rec-v2-field-error {
    color: var(--rec-v2-red);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Waiver scroll box */
.rec-v2-waiver-box {
    background: var(--rec-v2-cream);
    border: 2px solid var(--rec-v2-border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    max-height: 320px;
    overflow-y: auto;
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--rec-v2-text-muted);
    margin-bottom: 1.25rem;
}

.rec-v2-waiver-box::-webkit-scrollbar {
    width: 10px;
}
.rec-v2-waiver-box::-webkit-scrollbar-track {
    background: var(--rec-v2-border);
    border-radius: 5px;
}
.rec-v2-waiver-box::-webkit-scrollbar-thumb {
    background: var(--rec-v2-gold);
    border-radius: 5px;
}

/* Subform card (e.g. additional contacts inside register) */
.rec-v2-subform-card {
    background: var(--rec-v2-cream);
    border: 1px solid var(--rec-v2-border);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.rec-v2-subform-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.rec-v2-subform-card-header h6 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 800;
    color: var(--rec-v2-navy);
    margin: 0;
    font-size: 1rem;
}

/* Alerts (rec-v2 styled) */
.rec-v2-alert {
    border: 1px solid;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.rec-v2-alert-success {
    background: #f0fdf4;
    border-color: #86efac;
    color: #14532d;
}

.rec-v2-alert-danger {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #7f1d1d;
}

.rec-v2-alert-warning {
    background: #fffbeb;
    border-color: #fcd34d;
    color: #78350f;
}

.rec-v2-alert i {
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.rec-v2-alert strong {
    display: block;
    margin-bottom: 0.15rem;
}

/* Sidebar info card (used on contact / coach signup) */
.rec-v2-info-card {
    background: var(--rec-v2-navy);
    color: white;
    border-radius: var(--rec-v2-radius-lg);
    padding: 2rem;
    box-shadow: var(--rec-v2-shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.rec-v2-info-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--rec-v2-gold) 0%, transparent 70%);
    opacity: 0.2;
}

.rec-v2-info-card h3 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--rec-v2-gold);
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
    position: relative;
    z-index: 1;
}

.rec-v2-info-card > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.rec-v2-info-card .info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.rec-v2-info-card .info-row:last-child {
    border-bottom: none;
}

.rec-v2-info-card .info-row > i {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: var(--rec-v2-gold);
    border-radius: 10px;
    font-size: 0.95rem;
}

.rec-v2-info-card .info-row strong {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.rec-v2-info-card .info-row span,
.rec-v2-info-card .info-row a {
    color: white;
    font-weight: 500;
    text-decoration: none;
}

.rec-v2-info-card .info-row a:hover {
    color: var(--rec-v2-gold-light);
}

/* Why-coach perks list (coach signup) */
.rec-v2-perks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rec-v2-perks-list li {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem 0;
    color: var(--rec-v2-text);
}

.rec-v2-perks-list li i {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rec-v2-gold);
    color: var(--rec-v2-navy-dark);
    border-radius: 8px;
    font-size: 0.85rem;
}

.rec-v2-perks-list li strong {
    display: block;
    color: var(--rec-v2-navy);
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.rec-v2-perks-list li p {
    color: var(--rec-v2-text-muted);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}

/* Calendar filter bar v2 */
.rec-v2-filter-bar {
    background: white;
    border-radius: var(--rec-v2-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--rec-v2-border);
    box-shadow: var(--rec-v2-shadow-sm);
}

.rec-v2-filter-bar label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--rec-v2-navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

/* Submit button row */
.rec-v2-submit-row {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rec-v2-border);
}

/* Responsive tweaks -------------------------------------------------------- */
@media (max-width: 991.98px) {
    .rec-v2-hero {
        min-height: 440px;
    }

    .rec-v2-hero > .container {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 767.98px) {
    .rec-v2-hero {
        min-height: 380px;
    }

    .rec-v2-hero > .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .rec-v2-section {
        padding: 3rem 0;
    }

    .rec-v2-cta-banner {
        padding: 2.5rem 1.5rem;
    }

    .rec-v2-sport-card {
        aspect-ratio: 3 / 4;
    }

    .rec-v2-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .rec-v2-hero-actions .rec-v2-btn {
        width: 100%;
    }

    .rec-v2-schedule-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    .rec-v2-schedule-date {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    .rec-v2-schedule-date .day {
        font-size: 1.35rem;
    }
}
