/* Hana Ader Personal Site
   Design: Clean, elegant, minimal
   Fonts: Lora + Work Sans */

:root {
    --ink: #1c1c1c;
    --charcoal: #3a3a3a;
    --stone: #6a6a6a;
    --silver: #9a9a9a;
    --light: #e8e8e8;
    --cream: #f9f8f6;
    --white: #ffffff;
    --blush: #d4a5a5;
    --serif: 'Lora', Georgia, serif;
    --sans: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    padding: 32px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--stone);
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--ink);
}

/* Hero */
.hero {
    padding: 100px 0 60px;
    text-align: center;
}

.hero h1 {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* About */
.about-section {
    padding: 60px 0;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Contact */
.contact-section {
    padding: 60px 0;
    background: var(--cream);
}

.contact-content {
    text-align: center;
}

.contact-content h2 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.contact-content p {
    font-size: 1rem;
    color: var(--stone);
    margin-bottom: 8px;
}

.contact-content .email {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--charcoal);
    border-bottom: 1px solid var(--silver);
    margin-bottom: 32px;
}

.contact-content .email:hover {
    color: var(--ink);
    border-color: var(--ink);
}

.contact-content .location {
    font-size: 0.9rem;
    color: var(--silver);
}

/* Footer */
.site-footer {
    padding: 40px 0;
    text-align: center;
}

.site-footer p {
    font-size: 0.8rem;
    color: var(--silver);
}

/* Responsive */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .main-nav {
        gap: 20px;
    }
}
