/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 18px;
    line-height: 1.8;
    color: #2a2a2a;
    background: linear-gradient(135deg, #fdfbf7 0%, #f8f6f2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Container */
.container {
    max-width: 720px;
    width: 100%;
    animation: fadeIn 1s ease-in;
}

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

/* Header/Hero */
.hero {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #d4d0c8;
}

.name {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: #6b6b6b;
    font-style: italic;
}

/* About Section */
.about {
    margin-bottom: 2.5rem;
}

.intro {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #3a3a3a;
    text-align: center;
    font-weight: 300;
}

/* Content Sections */
.content {
    margin-bottom: 2.5rem;
}

.content-block {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e8e6e0;
}

.content-block:first-child {
    border-top: none;
}

.content-block h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.content-block p {
    color: #4a4a4a;
    font-weight: 300;
}

/* Footer */
.contact {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #d4d0c8;
    color: #6b6b6b;
    font-size: 0.95rem;
}

.contact p {
    margin-bottom: 0.5rem;
}

.year {
    font-size: 0.85rem;
    color: #9b9b9b;
    margin-top: 1rem;
}

/* Links */
a {
    color: #5a5a5a;
    text-decoration: none;
    border-bottom: 1px solid #c4c0b8;
    transition: all 0.3s ease;
}

a:hover {
    color: #2a2a2a;
    border-bottom-color: #2a2a2a;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 17px;
        padding: 1.5rem;
    }

    .name {
        font-size: 2.25rem;
    }

    .intro {
        font-size: 1.15rem;
    }

    .content-block h2 {
        font-size: 1.35rem;
    }

    .hero {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
        padding: 1rem;
    }

    .name {
        font-size: 1.85rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .intro {
        font-size: 1.05rem;
    }
}