/* ================================
   Simple Minimalist Homepage Template 2
   ================================
   
   Ultra-minimalist centered design.
   Clean, modern, and spacious layout.
   
   HOW TO CUSTOMIZE:
   - Adjust spacing and typography
   - Change colors
   - Modify layout structure
   ================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
    padding: 60px 20px;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

/* Profile section - Centered */
.profile-section {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e8e8e8;
}

.profile-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.name {
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 8px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-brief {
    margin-bottom: 20px;
}

.contact-brief a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.contact-brief a:hover {
    color: #000;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.social-link img {
    width: 24px;
    height: 24px;
    display: block;
}

.social-link:hover {
    opacity: 0.75;
}

/* Content sections */
.content-section {
    margin-bottom: 50px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 18px;
    display: block;
}

.section-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    font-weight: 300;
}

/* Item list */
.item-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-title {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.item-meta {
    font-size: 0.9rem;
    color: #777;
    font-weight: 300;
}

.item-links {
    margin-top: 6px;
    display: flex;
    gap: 12px;
}

.item-links a {
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.item-links a:hover {
    color: #000;
}

/* Footer */
.footer {
    margin-top: 80px;
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    border-top: 1px solid #f0f0f0;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 40px 15px;
    }

    .container {
        max-width: 100%;
    }

    .profile-section {
        margin-bottom: 50px;
        padding-bottom: 40px;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .name {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .content-section {
        margin-bottom: 40px;
    }

    .section-text {
        font-size: 0.95rem;
    }

    .item-title {
        font-size: 0.95rem;
    }

    .item-meta {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 30px 15px;
    }

    .profile-photo {
        width: 100px;
        height: 100px;
    }

    .name {
        font-size: 1.7rem;
    }

    .social-links {
        gap: 15px;
    }

    .section-label {
        font-size: 0.7rem;
    }

    .section-text {
        font-size: 0.9rem;
    }

    .item {
        gap: 3px;
        padding-bottom: 15px;
    }
}
