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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

/* Container and layout */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.content {
    max-width: 28rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 0;
}

.title {
    font-size: 3rem;
    font-weight: 300;
    color: #1f2937;
    letter-spacing: 0.025em;
}

/* Profile Section */
.profile-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-image-container {
    display: flex;
    justify-content: center;
}

.profile-image-wrapper {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile-image {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.name {
    font-size: 1.875rem;
    font-weight: 300;
    color: #1f2937;
    margin-bottom: 0;
}

.role {
    color: #6b7280;
    font-weight: 300;
    font-size: 1rem;
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1f2937;
    text-align: center;
    margin-bottom: 0;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
}

.contact-item:hover {
    background-color: #f9fafb;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.phone-icon {
    background-color: #dbeafe;
    color: #2563eb;
}

.contact-item:hover .phone-icon {
    background-color: #bfdbfe;
}

.email-icon {
    background-color: #dcfce7;
    color: #16a34a;
}

.contact-item:hover .email-icon {
    background-color: #bbf7d0;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.contact-value {
    color: #1f2937;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    .content {
        gap: 1.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .name {
        font-size: 1.5rem;
    }
    
    .profile-image-wrapper {
        width: 6rem;
        height: 6rem;
    }
    
    .profile-image {
        width: 5rem;
        height: 5rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
}