/* Global */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
}

/* Header */

header {
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.2rem;
}

header p {
    margin: 0;
    color: #94a3b8;
}

/* Social Links */

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #3b82f6;
    transform: translateY(-2px);
}


/* Navigation */

nav {
    background: #0b1220;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

nav a:hover {
    color: #3b82f6;
}

/* Main Layout */

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    margin-bottom: 80px;
}

/* Section Titles */

h2 {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.section-divider {
    height: 2px;
    width: 60px;
    background: #3b82f6;
    margin: 10px 0 30px 0;
}

/* About Section */

.about-intro {
    margin-bottom: 30px;
    font-size: 1.05rem;
    color: #cbd5e1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-education {
    margin-bottom: 50px;
    max-width: 400px;
}

.education-card {
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(59, 130, 246, 0.08);
    border-left: 3px solid #3b82f6;
    border-radius: 4px;
}

.about-grid h3 {
    margin-bottom: 10px;
}

.about-grid ul {
    list-style: none;
    padding: 0;
}

.about-grid li {
    margin-bottom: 10px;
    padding: 6px 10px;
    background: rgba(59, 130, 246, 0.08);
    border-left: 3px solid #3b82f6;
    border-radius: 4px;
}

/* Footer */

footer {
    text-align: center;
    padding: 30px;
    color: #94a3b8;
    font-size: 0.9rem;
}
