@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.container {
    width: 100%;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.tagline {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    margin-bottom: 20px;
}

/* Social Icons - circular with labels */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.social-icons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #333;
    text-decoration: none;
    transition: opacity 0.2s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.social-icons span {
    font-size: 12px;
    color: #666;
}

/* Horizontal Rule */
hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 40px 0;
}

/* Timeline */
.timeline-entry {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.timeline-emoji {
    font-size: 28px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.timeline-content {
    flex: 1;
}

.timeline-content p {
    margin: 0;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Sections */
.section {
    margin-bottom: 40px;
}

.section h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: lowercase;
    color: #888;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.section p {
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 40px 16px;
    }
    
    h1 {
        font-size: 26px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .timeline-entry {
        gap: 16px;
    }
    
    .timeline-emoji {
        font-size: 24px;
        width: 32px;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .social-icons svg {
        width: 28px;
        height: 28px;
    }
}
