/* ===== MEET MADHAN PAGE STYLES ===== */

/* Profile Hero */
.madhan-hero {
    position: relative;
    padding: 10rem var(--side-padding) 6rem;
    background: radial-gradient(circle at 70% 30%, #151515 0%, var(--color-black) 70%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.madhan-hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-lg);
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.madhan-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.madhan-eyebrow {
    font-family: var(--font-accent);
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.madhan-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 300;
}

.madhan-tagline {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.madhan-hero-img-wrap {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    aspect-ratio: 3/4;
}

.madhan-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.madhan-hero-img-wrap:hover img {
    transform: scale(1.04);
}

/* Timeline & Story */
.story-section {
    padding: var(--space-xl) var(--side-padding);
    background: var(--color-black);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: var(--container-width);
    margin: 0 auto;
    align-items: center;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    font-weight: 300;
}

.story-text p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: 3rem;
}

.award-item {
    border-left: 2px solid var(--color-gold);
    padding-left: 1.5rem;
}

.award-title {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.award-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Equipment & Specs */
.specs-section {
    padding: var(--space-xl) var(--side-padding);
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.specs-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.specs-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 4rem;
    font-weight: 300;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.spec-category {
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.spec-category:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.spec-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.spec-cat-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
}

.spec-list li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-section {
    padding: var(--space-xl) var(--side-padding);
    background: var(--color-black);
}

.team-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 5rem;
}

.team-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 300;
}

.team-header p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.team-card {
    background: #0d0d0d;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.team-img-wrap {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition-slow);
}

.team-card:hover .team-img-wrap img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 0.35rem;
    font-weight: 400;
}

.team-role {
    font-family: var(--font-accent);
    color: var(--color-gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-bio {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-social-link:hover {
    color: var(--color-white) !important;
}

/* Responsiveness */
@media (max-width: 992px) {
    .madhan-hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
    .madhan-hero-text {
        align-items: center;
    }
    .madhan-hero-img-wrap {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .team-img-wrap {
        height: 320px;
    }
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

/* Quote Overrides for Dark Section */
.premium-cta .quote {
    color: rgba(255, 255, 255, 0.95);
}

.premium-cta .quote-author {
    color: var(--color-gold);
}
