/* ============================================
   Sree Nayaki Chits - Directors Page Styles
   ============================================ */

.directors-hero {
    text-align: center;
    padding: 5rem 4rem 3rem;
    border-bottom: 1px solid var(--border);
    padding-top: 130px;
}

.directors-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.directors-hero p {
    font-size: 17px;
    color: var(--text-muted);
    font-weight: 500;
}

/* MD SECTION */
.md-section {
    padding: 5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: start;
}

.md-portrait {
    position: sticky;
    top: 100px;
}

.md-portrait-frame {
    border: 1px solid var(--border);
    padding: 2rem;
    background: var(--surface);
    position: relative;
}

.md-portrait-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 1px solid rgba(46, 151, 162, 0.15);
    z-index: -1;
}

.md-avatar {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--surface2), var(--deep));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.md-avatar-initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--gold);
    font-weight: 500;
    opacity: 0.6;
}

.md-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
}

.md-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.md-title {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.md-phone {
    margin-top: 1rem;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.md-phone a {
    color: var(--gold);
    text-decoration: none;
}

.md-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text);
}

.md-content h2 em {
    font-style: italic;
    color: var(--gold);
}

.md-content p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.md-principle {
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 3px solid var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.5;
}

.md-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 1.5rem 0;
}

.md-tag {
    padding: 6px 14px;
    border: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
    border-radius: 100px;
}

/* OTHER DIRECTORS */
.other-directors {
    padding: 4rem;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.other-directors h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text);
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.director-card {
    background: var(--deep);
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: border-color 0.3s, transform 0.3s;
}

.director-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.director-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--surface2), var(--surface));
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.director-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.director-role {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.director-phone {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.director-phone a {
    color: var(--gold);
    text-decoration: none;
}

.director-bio {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 500;
}

.director-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 1rem;
}

.director-trait {
    font-size: 13px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 100px;
}

@media (max-width: 1024px) {
    .directors-grid { grid-template-columns: repeat(2, 1fr); }
    .md-section { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .md-portrait { position: static; max-width: 400px; margin: 0 auto; }
    .md-content h2 { font-size: 1.8rem; }
    .md-principle { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .directors-grid { grid-template-columns: 1fr; }
    .md-section, .other-directors { padding: 3rem 1.5rem; }
    .directors-hero { padding: 3rem 1.5rem 2rem; padding-top: 100px;}
    .md-tags { justify-content: center; }
    .director-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .directors-hero h1 { font-size: 2rem; }
    .md-portrait-frame { padding: 1rem; }
}
