@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Sans+Pro:wght@400;600&display=swap');

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #fcf9f2;
    color: #3e3a35;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.container {
    max-width: 600px;
    padding: 40px 20px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #8c6b5d;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #6a5e55;
    font-style: italic;
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: #d4c4b7;
    margin: 0 auto 2rem;
}

.lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.lang-switcher a {
    text-decoration: none;
    color: #8c6b5d;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 8px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.2s;
}

.lang-switcher a:hover, .lang-switcher a.active {
    border-color: #d4c4b7;
    background-color: #f4eee1;
}

@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.25rem; }
    .lang-switcher {
        position: static;
        margin-top: 20px;
        margin-bottom: 0;
        padding: 0 10px;
        width: 100%;
    }
    body, html {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 10px;
    }
    .container {
        padding-top: 20px;
    }
}