/* ---- General ---- */
.text-center {
    text-align: center;
}

/* ---- People & Staff ---- */
.profile-img {
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    object-fit: cover;
}

/* ---- Classes ---- */
.class-icon {
    width: 60px;
    height: 60px;
}

/* ---- Solar Island ---- */
.solar-island-icon {
    width: 50px;
    height: 50px;
}

/* ---- Footer ---- */
.footer-icon {
    width: 20px; 
    height: 20px; 
    vertical-align: middle; 
    margin-right: 5px;
}

.footer-separator {
    margin: 0 10px;
}

/* ---- Hero (lo movemos aquí también) ---- */
.hero {
    height: 90vh;
    background-image: url(images/data1.avif);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}
/* Pico por defecto hace el fondo de <article> blanco, lo sobreescribimos aquí */
.hero article {
    background: rgba(0, 0, 0, 0.6); 
    padding: 2rem;
    border: none;
}
/* Los títulos dentro del hero deben ser blancos */
.hero h2, .hero p {
    color: white;
}
