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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Profile section */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Avatar styles */
.avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography */
.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.bio {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #555;
}

.description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #666;
    max-width: 500px;
}

/* Contact button */
.contact {
    margin-top: 1rem;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.email-btn:hover {
    background-color: #e5e5e5;
}

.email-btn:before {
    content: "✉";
    margin-right: 0.5rem;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .bio {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .avatar {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }
    
    .name {
        font-size: 1.8rem;
    }
    
    .bio {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .email-btn {
        padding: 0.6rem 1.2rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }
    
    .name {
        color: #f0f0f0;
    }
    
    .bio {
        color: #d0d0d0;
    }
    
    .description {
        color: #b0b0b0;
    }
    
    .email-btn {
        background-color: #2a2a2a;
        color: #e0e0e0;
    }
    
    .email-btn:hover {
        background-color: #3a3a3a;
    }
}
