/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
html, body {
    height: 100%;
}

body {
    font-family: 'Times New Roman', Times, serif;
    color: #000;
    background-color: #faf8f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: auto;
}

a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    color: #333;
}

/* Language Toggle */
.lang-toggle {
    position: fixed;
    top: 28px;
    right: 36px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 100;
    user-select: none;
}

.lang-btn {
    background: none;
    border: none;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    color: #000;
    cursor: pointer;
    padding: 0 0 3px 0;
    border-bottom: 2px solid transparent;
    line-height: 1;
    letter-spacing: 0.5px;
}

.lang-btn.active {
    border-bottom: 2px solid #000;
}

.lang-btn:hover {
    color: #333;
}

.lang-sep {
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    color: #000;
    line-height: 1;
    padding-bottom: 3px;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 28px;
}

h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
    text-align: center;
}

h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: #000;
    text-align: center;
    margin-top: 8px;
}

.portrait {
    margin-top: 28px;
    width: 220px;
    height: auto;
    display: block;
}

/* Body Text */
main p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 17px;
    line-height: 1.7;
    color: #000;
    max-width: 780px;
    text-align: justify;
    text-align-last: center;
    margin-top: 24px;
    padding: 0 24px;
}

/* Columns */
.columns {
    display: flex;
    gap: 80px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.column {
    width: 160px;
}

.column h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 17px;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.5px;
    text-align: left;
    padding-bottom: 8px;
    border-bottom: 1px solid #000;
    margin-bottom: 12px;
}

.column ul {
    list-style: none;
}

.column ul li {
    margin-bottom: 6px;
    text-align: left;
}

.column ul li a {
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    color: #000;
}

/* Footer */
footer {
    padding: 0 0 28px 0;
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: #888;
}

.footer-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 14px;
    letter-spacing: 0.3px;
}
