/* Font Definitions */
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Bold.ttf') format('truetype');
    font-weight: 700;
}

/* Reset & Google Dark Theme Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', -apple-system, Roboto, sans-serif;
    background-color: #202124;
    color: #e8eaed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 680px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Hero Section */
.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Round Image Avatar Styling */
.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid #3c4043;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #e8eaed;
}

.highlight {
    color: #8ab4f8;
}

.bio {
    font-size: 1.05rem;
    color: #9aa0a6;
    line-height: 1.6;
    max-width: 560px;
    font-weight: 400;
}

/* Google Material Cards (Dark Mode) */
.actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    text-decoration: none;
    background-color: #303134;
    border: 1px solid #3c4043;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-icon {
    font-size: 1.25rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.btn-blue .btn-icon {
    background-color: rgba(138, 180, 248, 0.15);
    color: #8ab4f8;
}

.btn-green .btn-icon {
    background-color: rgba(129, 201, 149, 0.15);
    color: #81c995;
}

.btn-text h2 {
    font-size: 1.15rem;
    font-weight: 500;
    color: #e8eaed;
    margin-bottom: 0.2rem;
}

.btn-text p {
    font-size: 0.9rem;
    color: #9aa0a6;
}

/* Material Hover & Active States */
.btn:hover {
    background-color: #3c4043;
    border-color: #5f6368;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.btn:active {
    background-color: #474a4d;
}

/* Responsive */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .bio {
        font-size: 1rem;
    }
}