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

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #fbfbfd; /* Apple's signature light gray */
    color: #1d1d1f; /* Apple's dark gray text */
    -webkit-font-smoothing: antialiased;
}

nav {
    padding: 20px 40px;
    display: flex;
    justify-content: flex-start;
}

.logo {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 80px;
    font-weight: 700;
    letter-spacing: -3px;
    margin: 0 0 10px 0;
    background: linear-gradient(90deg, #1d1d1f, #434353);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
}

.about {
    display: flex;
    gap: 30px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    font-size: 28px;
    margin-top: 0;
    letter-spacing: -1px;
}

.card p {
    font-size: 18px;
    line-height: 1.6;
    color: #515154;
}

footer {
    text-align: center;
    padding: 40px;
    color: #86868b;
    font-size: 14px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 4px solid #ffffff;
    animation: fadeIn 1.5s ease-out;
}