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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    font-size: 16px;
    height: 100vh;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    height: 100vh;
    display: flex;
    align-items: center;
}

.profile-section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    height: 100%;
}

/* Left Side - Photo and Title */
.profile-image {
    text-align: center;
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 4rem;
    border: 3px solid #e0e0e0;
}

.bio-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

/* Right Side - Bio Content */
.bio-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.bio-text {
    text-align: left;
    margin-bottom: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.bio-text p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* CTA Section */
.cta-section {
    text-align: left;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.cta-question {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

.contact-info a {
    color: #666;
    text-decoration: underline;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        height: 100vh;
        overflow-y: auto;
    }
    
    .profile-section {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .bio-content h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .bio-text {
        text-align: center;
        max-height: none;
        overflow-y: visible;
    }
    
    .bio-text p {
        font-size: 0.9rem;
    }
    
    .cta-section {
        text-align: center;
    }
    
    .cta-question {
        font-size: 0.95rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .photo-placeholder {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .bio-content h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .bio-text p {
        font-size: 0.85rem;
    }
    
    .cta-question {
        font-size: 0.9rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    .photo-placeholder {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
}

/* Add your actual photo */
.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e0e0e0;
}

@media (max-width: 768px) {
    .profile-image img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .profile-image img {
        width: 120px;
        height: 120px;
    }
}
