/* Paleta Mayra: Blanco, Gris Suave y Negro Carbón */
:root {
    --bg: #ffffff;
    --text: #111;
    --accent: #555;
    --card: #f9f9f9;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.container { padding: 80px 10%; }

.back-link {
    position: absolute;
    top: 30px;
    left: 30px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.personal-hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #E4717A;
}

.profile-img {
    width: 300px;
    height: 300px;
    background: #ddd; /* Espacio para foto */
    border-radius: 50%;
    margin-bottom: 50px;
    margin-left: 100px;

    background-image: url('fotitoyoali.jpg'); /* Nombre de tu archivo */
    background-size: cover;              /* Ajusta la foto al círculo */
    background-position: center;         /* Centra la cara en el círculo */
    border: 3px solid white;             /* Opcional: un borde para que resalte */
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-item {
    height: 250px;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.project-item:hover { background: #eee; }

.skill-tags span {
    padding: 8px 20px;
    border: 1px solid var(--text);
    margin-right: 10px;
    font-size: 0.8rem;
}

.contact-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: var(--text);
    color: white;
    text-decoration: none;
}