/* ═══════════════════════════════════════════════════
   INSTRUCTORES PAGE — Bujinkan Sant Cugat
   ═══════════════════════════════════════════════════ */

/* ─── 1. HERO SECTION ──────────────────────────── */
.instructores-hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

.instructores-hero-section .hero-layout {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    min-height: 0;
}

/* El hero-col-center ocupa el espacio con flexbox vertical */
.instructores-hero-section .hero-col-center {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 0;
}

/* Empujar branches debajo del header */
.instructores-hero-section .hero-col-left,
.instructores-hero-section .hero-col-right {
    padding-top: 15%;
}

.instructores-hero-content {
    text-align: center;
    padding: 15px 20px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
}

.instructores-hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.instructores-hero-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ─── Description (shared base style) ────────── */
.instructores-hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Desktop-large description (inside hero, between tagline and image) — always visible on desktop */
.instructores-hero-description--desktop-large {
    display: block;
    margin-top: 15px;
}

/* Mobile-only description (inside hero, after image) — hidden on desktop */
.instructores-hero-description--mobile {
    display: none;
}

/* Below-fold section — hidden (description now lives inside the hero) */
.instructores-description-section {
    display: none;
}

/* ─── HERO IMAGE + SOL ROJO ────────────────────── */
/* Extiende .hero-image-area (shared.css) — empuja al fondo y crece */
.instructores-hero-section .hero-image-area {
    margin-top: auto;
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
}

/* Sol con opacidad reducida */
.instructores-hero-section .hero-image-area .hero-sun {
    opacity: 0.85;
}

/* Foto instructores — ancho en vw para mantener proporción con el sol */
.instructores-photo {
    max-width: 1109px;
    width: 54vw;
    max-height: 100%;
    object-fit: contain;
}

/* ─── 2. BIOGRAFÍAS SECTION ──────────────────────── */
.instructores-bio-section {
    padding: 80px 0;
}

.instructores-bio-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.instructores-bio-section .subtitle-decoration {
    margin-bottom: 60px;
}

.instructores-bio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Instructor Card */
.instructor-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px 35px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Rank badge */
.instructor-rank {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.instructor-dan {
    display: inline-block;
    background-color: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instructor-title-rank {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Name */
.instructor-name {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.instructor-since {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
}

/* Bio text */
.instructor-bio p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.instructor-bio p:last-child {
    margin-bottom: 20px;
}

.instructor-bio strong {
    color: var(--color-dark);
}

/* Discipline tags */
.instructor-disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.discipline-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #555;
    transition: all 0.3s ease;
}

.discipline-tag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
