/* Core Variables */
:root {
    --pink-bg: #ffade3;
    --lime-accent: #ccff00;
    --black: #050505;
    --border-thick: 2px solid var(--black);
    --shadow-solid: 5px 5px 0px var(--black);
    --font-main: 'Helvetica Neue', Arial, sans-serif;
}

/* Global Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000000;
    color: var(--black);
    display: flex;
    justify-content: center;
}

header {
    background: #f2f2f2;
    margin: 1px;
    padding: 12px 22px;
    border-radius: 0 0 18px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    width: 70px;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 12px 22px;
}

nav a {
    text-decoration: none;
    color: #111;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px; 
}

.profile-grid {
    display: grid;
    gap: 60px 8%;
    width: auto;
    background: #f3a3e7;
    align-items: center;
}
        
main {
    width: 100%;
}

.columna {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.academic-column {
    display: flex;
    flex-direction: column;
}

.main-container {
    width: 100%;
    background-color: var(--white);
    overflow: hidden;
}

/* --- Header Navigation --- */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: var(--border-thick);
    background-color: var(--white);
}

.logo {
    border: var(--border-thick);
    padding: 5px 10px;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.nav-links {
    font-weight: bold;
    font-size: 1.1rem;
    word-spacing: 20px;
}

.nav-links span {
    color: var(--pink-bg);
}

/* --- Main Pink Section --- */
.hero-section {
    background-color: var(--pink-bg);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* Left Column (Bio & Image) */
.left-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.image-container {
    position: relative;
    width: 80%;
    margin-bottom: 10px;
}

.profile-pic {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #333; /* Placeholder for image */
    border-radius: 20px;
    border: var(--border-thick);
    object-fit: cover;
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.badge-rotulo {
    position: absolute;
    top: 20px;
    left: -20px;
    background-color: var(--lime-accent);
    border: var(--border-thick);
    padding: 5px 15px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 3px 3px 0px var(--black);
    z-index: 2;
}

.bio-text p {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.quote-block {
    margin-top: 20px;
    position: relative;
}

.quote-block h2 {
    font-size: 2rem;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.2;
}

.quote-block .white-text {
    color: var(--white);
    -webkit-text-stroke: 1px var(--white);
}

.quote-divider {
    height: 4px;
    width: 60%;
    background-color: var(--lime-accent);
    margin: 20px 0;
}

.objective-text {
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Right Column (Name & Subjects) */
.right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.name-banner {
    background-color: var(--lime-accent);
    border: var(--border-thick);
    box-shadow: var(--shadow-solid);
    padding: 30px 40px;
    position: relative;
    margin-bottom: 60px;
    margin-top: 20px;
}

.name-banner h1 {
    font-size: 4rem;
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0;
}

/* CSS Drawn Star */
.star-icon {
    position: absolute;
    top: -30px;
    right: 20px;
    font-size: 4rem;
    line-height: 1;
    color: var(--black);
}

.badge-materias {
    background-color: var(--lime-accent);
    border: var(--border-thick);
    padding: 5px 15px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 3px 3px 0px var(--black);
    margin-bottom: 30px;
    display: inline-block;
}

.subjects-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.subject-item h4 {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 3px;
}

.subject-item p {
    font-size: 0.95rem;
    font-weight: 800;
}

.subjects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.hero-img {
    object-fit: cover;
    border-radius: 18px;
    border: none;
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.equipo-section {
    background: #f3a3e7;
    padding: 60px 8%;
    text-align: center;
}

.bio-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.equipo-section h2 {
    font-size: 38px;
    margin-top: 0;
    text-transform: uppercase;
}

.equipo {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: white;
    width: 220px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

.integrante {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 14px;
}

.card p {
    font-size: 13px;
}

.footer-final {
    background: #000;
    color: white;
    padding: 70px 8%;
}

.linea {
    display: inline-block;
    width: 220px;
    height: 3px;
    background: white;
    margin-left: 20px;
    margin-bottom: 18px;
}

.footer-cards {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.mini-card {
    background: white;
    color: #111;
    padding: 22px;
    border-radius: 18px;
    width: 280px;
}

.mini-card h3 {
    margin-top: 0;
    font-size: 14px;
}

.mini-card p {
    font-size: 13px;
    line-height: 1.5;
}

.footer-grid {
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 60px;
    padding-top: 35px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-col h4 {
    color: #f3a3e7;
    margin-bottom: 10px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.7;
}

.boton {
    color: #f3a3e7;
    text-decoration: none;
}

.boton:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
    
    .footer-details {
        grid-template-columns: 1fr;
    }
}