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

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

body {
    font-family: 'Lato', Georgia, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: #3c2f2f;
    background-color: #f7f3ec;
    padding: 48px 20px;
}

.container {
    max-width: 680px;
    margin: 0 auto;
}

header {
    margin-bottom: 28px;
}

header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2e1f1f;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.subtitle {
    font-size: 14px;
    color: #8a7560;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

nav {
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d6c9b5;
}

nav a {
    color: #7a5c3e;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
    letter-spacing: 0.04em;
}

nav a:hover {
    color: #3c2f2f;
    text-decoration: underline;
    text-decoration-color: #c9a97a;
}

.lang-switch {
    float: right;
    color: #8a7560;
}

main {
    margin-bottom: 48px;
}

section {
    margin-bottom: 36px;
}

h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #2e1f1f;
    margin-bottom: 12px;
}

.about p {
    color: #4a3728;
}

.photo {
    display: block;
    margin-top: 20px;
    max-width: 320px;
    width: 100%;
    border-radius: 4px;
}

.link-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.link-card {
    text-decoration: none;
    color: #7a5c3e;
    font-size: 16px;
}

.link-card:hover {
    color: #3c2f2f;
    text-decoration: underline;
    text-decoration-color: #c9a97a;
}

.link-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    display: inline;
    color: inherit;
}

.link-card p {
    display: inline;
    color: #8a7560;
    font-size: 14px;
    margin-left: 8px;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tag {
    font-size: 13px;
    color: #5a7055;
    background-color: #eaf0e6;
    border: 1px solid #c2d4bc;
    padding: 3px 12px;
    border-radius: 2em;
    letter-spacing: 0.02em;
}

footer {
    padding-top: 20px;
    border-top: 1px solid #d6c9b5;
    color: #8a7560;
    font-size: 13px;
}

footer a {
    color: #7a5c3e;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
