@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@400&display=swap');

body {
    background-color: #e4dfe1;
    margin: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.5s ease-in;
}

.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 80px 20px;
}

.profile-pic {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 8px solid #ffffff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: #3b3236;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.4rem;
    color: #82797d;
    line-height: 1.4;
    margin: 0 auto 50px auto;
}

.divider {
    border: none;
    border-top: 1px solid #b5adb1;
    width: 100%;
    margin-bottom: 30px;
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.navigation a {
    text-decoration: none;
    color: #82797d;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.navigation a:hover {
    color: #3b3236;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #4a4144;
    line-height: 1.1;
    margin: 0;
}

.text-block {
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
}

.text-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #4a4144;
    margin: 20px 0 15px 0;
}

.text-block p {
    font-size: 1rem;
    color: #635b5e;
    line-height: 1.6;
    margin-bottom: 20px;
}

details {
    margin-top: 40px;
}

summary {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 400;
    color: #4a4144;
    cursor: pointer;
    padding: 15px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d3ced0;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '\25BC';
    font-size: 1.2rem;
    color: #82797d;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(180deg);
}

.more-to-read {
    margin-top: 100px;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.more-to-read-title {
    font-size: 0.8rem;
    color: #82797d;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.project-card {
    text-align: center;
    text-decoration: none;
    display: block;
}

.project-card img {
    width: 100%;
    height: auto;
    border: 12px solid #ffffff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.02);
}

.project-date {
    font-size: 0.75rem;
    color: #82797d;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #4a4144;
    margin: 0;
    display: inline-block;
    padding-bottom: 5px;
    transition: border-bottom 0.2s ease;
    border-bottom: 1px solid transparent;
}

.project-card:hover .project-title {
    border-bottom: 1px solid #4a4144;
}