/* General Reset & Layout */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding-top: 50px;
    padding-bottom: 20px;
}

.brand-name {
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #444;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Profile Image Styling */
.profile-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 4px solid #fff;
}

/* Button Styling */
.cta-button {
    display: inline-block;
    background-color: #1a73e8; /* Blue color from screenshot */
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    transition: background 0.2s;
}

.cta-button:hover {
    background-color: #1557b0;
}

/* Bio Section */
.section-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 60px 0;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.bio-text p {
    margin-bottom: 20px;
    color: #444;
    max-width: 850px;
}

/* Action Buttons */
.bio-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.action-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-btn { background-color: #00acee; color: white; }
.download-btn { background-color: #28a745; color: white; }

/* Footer */
.bottom-bar {
    margin-top: 100px;
    padding: 30px;
    border-top: 1px solid #eee;
    text-align: left;
    color: #888;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image-container {
        order: -1; /* Image appears first on mobile */
    }
    .profile-img {
        width: 200px;
        height: 200px;
    }
}
