/* Shared Navigation & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,400;7..72,500;7..72,600&display=swap');

body {
    font-family: 'Literata', Georgia, serif;
    line-height: 1.7;
    color: #2d2d2d;
    background: #f8f7f5;
    padding-top: 72px;
}

/* Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 247, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 100;
}

.nav-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1rem;
    font-weight: 600;
    color: #2d2d2d;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 450;
    transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c4705a;
}

/* Page container */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 6rem;
}

/* Page header */
.page-header {
    margin-bottom: 3rem;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #c4705a;
    margin-bottom: 0.5rem;
}

.page-description {
    font-size: 1.05rem;
    color: #666;
}

/* Footer */
footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-links a {
    color: #999;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: color 0.15s ease, background 0.15s ease;
}

.social-links a:hover {
    color: #c4705a;
    background: #fff;
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding-top: 64px;
    }
    
    .nav-container {
        padding: 1rem 1.25rem;
    }
    
    .nav-links {
        gap: 1.25rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .container {
        padding: 2rem 1.25rem 4rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
}
