/* Index Page Specific Styles */

body {
    background: linear-gradient(180deg, #DFFF00 0%, #FFFFFF 40%);
    background-attachment: fixed;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0;
    position: relative;
}

.hero-name-line {
    font-size: 15vw;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
    border-bottom: 2px solid #000;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.hero-name-line:nth-child(1) {
    text-align: left;
}

.hero-name-line:nth-child(2) {
    text-align: center;
}

.hero-name-line:nth-child(3) {
    text-align: right;
}

.hero-info {
    position: absolute;
    top: 3rem;
    right: 3rem;
    text-align: right;
    font-size: 0.95rem;
    line-height: 1.8;
}

.hero-info-left {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Profile Grid */
.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.profile-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-grid {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.info-label {
    opacity: 0.5;
    font-size: 0.85rem;
}

/* Academic */
.academic-grid {
    display: grid;
    gap: 2rem;
}

.academic-item {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    align-items: center;
}

.academic-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

.status-badge {
    padding: 0.5rem 1.5rem;
    border: 1px solid #000;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-card {
    padding: 3rem;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    transition: all 0.3s;
    display: block;
}

.team-card:hover {
    background: #000;
    color: #fff;
}

.team-card.current {
    background: #F5F5F5;
}

.team-number {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Institutional */
.institutional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.institutional-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.institutional-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-name-line {
        font-size: 20vw;
    }

    .hero-info,
    .hero-info-left {
        position: static;
        margin-bottom: 2rem;
    }

    .profile-content,
    .team-grid,
    .institutional-grid {
        grid-template-columns: 1fr;
    }
}
