/* ================================
   Simple Minimalist Homepage Template 4
   ================================
   
   Warm color accent design.
   Clean with warm earth tones.
   
   HOW TO CUSTOMIZE:
   - Change accent color
   - Adjust spacing
   - Modify card styling
   ================================ */

/* 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: #3e3e3e;
    background: #fefdf8;
    padding: 50px 20px;
    overflow-x: hidden;
}

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

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

/* Profile header */
.profile-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c87941;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
}

.name {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1.05rem;
    color: #666;
    font-weight: 400;
}

/* Info bar */
.info-bar {
    background: #fff8f0;
    border-left: 4px solid #c87941;
    padding: 20px 25px;
    margin-bottom: 45px;
    border-radius: 2px;
}

.info-item {
    margin-bottom: 12px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #c87941;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-right: 15px;
    min-width: 50px;
}

.info-value {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
}

.info-value:hover {
    color: #c87941;
}

.links-group {
    display: inline-flex;
    gap: 12px;
}

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

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

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

/* Main content */
.main-content {
    margin-bottom: 50px;
}

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

.section-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #c87941;
    letter-spacing: -0.3px;
}

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

/* Interest list */
.interest-list {
    list-style: none;
    padding-left: 0;
}

.interest-list li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.interest-list li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #c87941;
    font-size: 1.2rem;
}

/* Card styling */
.card {
    background: #ffffff;
    border-left: 3px solid #e8d5c4;
    padding: 18px 20px;
    margin-bottom: 15px;
    border-radius: 2px;
    transition: border-left-color 0.2s ease;
}

.card:hover {
    border-left-color: #c87941;
}

.card-title {
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: 500;
    margin-bottom: 5px;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

.card-links {
    display: flex;
    gap: 12px;
}

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

.card-links a:hover {
    color: #a35e2e;
}

/* Footer */
.page-footer {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #e8d5c4;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

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

    .profile-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .avatar {
        width: 90px;
        height: 90px;
    }

    .name {
        font-size: 1.9rem;
    }

    .info-bar {
        padding: 18px 20px;
    }

    .info-label {
        display: block;
        margin-bottom: 5px;
    }

    .section-heading {
        font-size: 1.15rem;
    }

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

@media (max-width: 480px) {
    .avatar {
        width: 80px;
        height: 80px;
    }

    .name {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .card {
        padding: 15px 18px;
    }

    .links-group {
        flex-direction: column;
        gap: 8px;
    }
}

