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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    color: #2d3748;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

/* Watercolor effect overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(152, 251, 152, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

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

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.tagline {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    max-width: 80%;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: #4a5568;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #2d3748;
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    justify-content: center;
    min-height: 100%;
}

.cta-button {
    display: block;
    padding: 1rem 2rem;
    background-color: #2d3748;
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: #1a202c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    margin-top: 2rem;
    text-align: center;
}

.contact-text {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #3182ce;
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.contact-button:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.2);
}

.phone-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .profile-section,
    .cta-section {
        padding: 1rem;
    }

    .tagline {
        max-width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-section,
.cta-button,
.contact-button {
    animation: fadeIn 0.5s ease-out forwards;
}

.cta-section > * {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.cta-section > *:nth-child(1) { animation-delay: 0.1s; }
.cta-section > *:nth-child(2) { animation-delay: 0.2s; }
.cta-section > *:nth-child(3) { animation-delay: 0.3s; }
.cta-section > *:nth-child(4) { animation-delay: 0.4s; }
.cta-section > *:nth-child(5) { animation-delay: 0.5s; }
.cta-section > *:nth-child(6) { animation-delay: 0.6s; } 