/* ─────────────────────────────────────────────
   Meet the Directors Page — CATKing
   Premium Design based on reference SS
───────────────────────────────────────────── */

:root {
    --orange:    #FEA525;
    --orange-dk: #E8931A;
    --ink:       #0F1021;
    --white:     #ffffff;
    --bg-light:  #F7F6F3;
    --text-muted:#666;
    --border:    #eeeeee;
}

.directors-page {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.directors-hero {
    background: var(--ink);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.directors-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.directors-hero h1 span {
    color: var(--orange);
}

.directors-hero::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    top: -100px; right: -50px;
    opacity: 0.15;
}

/* ══════════════════════════════════════════
   GRID SECTION
══════════════════════════════════════════ */
.grid-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.grid-section h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--ink);
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.director-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--orange);
}

.card-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 14px;
    font-style: italic;
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 5px;
    color: var(--ink);
}

.card-info p {
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-view {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--orange);
    color: var(--orange);
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-view:hover {
    background: var(--orange);
    color: var(--ink);
}

.grid-footer-note {
    margin-top: 40px;
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border: 1px dashed #ddd;
    font-size: 12px;
    color: #999;
}

/* ══════════════════════════════════════════
   DETAILS SECTION
══════════════════════════════════════════ */
.details-section {
    padding: 80px 0;
}

.details-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 60px;
}

.details-section h2 span {
    color: var(--orange);
}

.director-detail-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #f0f0f0;
    align-items: start;
}

.director-detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-photo {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 14px;
}

.detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 5px;
    position: relative;
    padding-left: 20px;
}

.detail-content h3::before {
    content: '';
    position: absolute;
    left: 0; top: 5px; bottom: 5px;
    width: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.detail-content .subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 30px;
    padding-left: 20px;
}

.detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.detail-text p {
    margin-bottom: 20px;
}

.detail-text strong {
    color: var(--ink);
}

.detail-footer-note {
    margin-top: 50px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px dashed #ddd;
    text-align: center;
    font-size: 12px;
    color: #999;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .directors-grid { grid-template-columns: repeat(2, 1fr); }
    .director-detail-row { grid-template-columns: 1fr; gap: 30px; }
    .detail-photo { max-width: 300px; }
}

@media (max-width: 600px) {
    .directors-grid { grid-template-columns: 1fr; }
    .directors-hero h1 { font-size: 32px; }
}
