/**
 * About Me Section - Minimalista
 */

.about-me-section {
    padding: 80px 0;
    background: #fff;
}

.about-me-wrapper {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Foto */
.photo-frame {
    width: 100%;
    height: 520px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenido */
.about-me-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-me-header {
    margin-bottom: 10px;
}

.about-me-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 8px 0;
}

.about-me-name {
    font-size: 0.9rem;
    font-weight: 400;
    color: #b2bec3;
    letter-spacing: 4px;
    margin: 0;
}

.about-me-bio {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-me-bio p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #636e72;
    margin: 0;
}

.about-me-location {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3436;
    margin: 10px 0;
}

/* Contacto */
.about-me-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    background: #2d3436;
    border-radius: 8px;
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.contact-label {
    color: #b2bec3;
    font-weight: 400;
}

.contact-link {
    color: #10b981;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #34d399;
}

.contact-phone {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .about-me-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .photo-frame {
        height: 460px;
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .about-me-section {
        padding: 60px 0;
    }
    
    .photo-frame {
        height: 400px;
        max-width: 100%;
    }
    
    .about-me-title {
        font-size: 1.85rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .about-me-section {
        padding: 40px 0;
    }
    
    .photo-frame {
        height: 350px;
    }
    
    .about-me-title {
        font-size: 1.5rem;
    }
    
    .about-me-name {
        letter-spacing: 3px;
    }
    
    .about-me-contact {
        padding: 14px 16px;
    }
}
