/* Build: v1767799859 */
/* === base.css === */
:root {
    --bg-primary: #d4cbbf;
    --bg-secondary: #c9c0b4;
    --bg-tertiary: #beb5a9;
    --bg-input: #ebe6e0;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #646e7a;
    --text-label: #3a4556;
    --accent-primary: #3a4556;
    --accent-primary-hover: #2d3645;
    --accent-secondary: #b05a6a;
    --accent-success: #e8732a;
    --accent-danger: #b05a6a;
    --accent-warning: #d9a741;
    --border: #b5ac9f;
    --border-light: #c9c0b4;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
}

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

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: #3a4556;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

header h1, header p, header a {
    color: #fff;
}

main {
    padding: 2rem;
    flex: 1;
    width: 100%;
}

a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-label);
}

small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    height: 44px;
}

textarea {
    height: auto;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.15);
}

input:invalid:not(:focus),
textarea:invalid:not(:focus) {
    border-color: var(--accent-danger);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--accent-success);
    color: #fff;
    font-weight: 500;
}


.btn-primary:disabled {
    background: var(--border-light);
    cursor: not-allowed;
    opacity: 0.5;
}

.btn-secondary {
    background: var(--border-light);
    color: var(--text-primary);
}


.btn-add {
    background: var(--accent-success);
    color: #fff;
}


.btn-remove {
    background: var(--accent-danger);
    color: #fff;
    flex-shrink: 0;
}

.btn-danger {
    background: var(--accent-danger);
    color: #fff;
}


.collapse-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

section:not(.expanded) .collapse-btn {
    transform: rotate(90deg);
}

.section-content {
    padding: 1.5rem;
    display: none;
}

section.expanded .section-content {
    display: block;
}

.form-group {
    margin-bottom: 1.25rem;
}

.hidden {
    display: none !important;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }
.uppercase { text-transform: uppercase; }

.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 5px;
}


/* Footer */
footer {
    display: flex;
    flex-direction: column;
}

footer > div {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

footer > div:first-child {
    background: #b05a6a;
    color: #fff;
    font-size: 1.05rem;
}

footer > div:first-child p {
    color: rgba(255,255,255,0.85);
}

footer > div:first-child a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

footer > div:last-child {
    background: #3a4556;
    color: #fff;
}

footer > div:last-child a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

footer > div:last-child img {
    height: 32px;
    width: auto;
}

/* Top Navigation */
nav {
    background: var(--bg-secondary);
    padding: 0.75rem 2rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
}

nav .language-selector {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
    min-width: 100px;
    width: auto;
}

/* === site.css === */
nav {
    padding: 0.75rem 2rem;
}

header {
    margin-bottom: 1.5rem;
}

footer {
    margin-top: auto;
    font-size: 1.1rem;
}

footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}


ol {
    list-style: upper-roman;
    margin-left: 2rem;
}

ol ul {
    list-style: square;
    margin-left: 1.5rem;
}

li {
    padding: 0.5rem 0;
}


li p {
    color: var(--text-secondary);
}

.opt a, .opt a:visited, .opt {
    color: #c75820;
}

.opt2 a, .opt2 a:visited, .opt2 {
    color: #a07060;
}

.opt3 a, .opt3 a:visited, .opt3 {
    color: #9a9080;
}

li i {
    background-color: var(--text-secondary);
    padding: 0.2rem 0.4rem;
    border-radius: 0.2rem;
    color: var(--bg-primary);
    font-style: normal;
    cursor: pointer;
}

