/* ===========================
   Tunicus — Coming Soon Page
   Palette from logo: parchment, gold, dark brown
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

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

html, body {
    height: 100%;
}

body {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    background-color: #f0e4c8;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(200, 168, 75, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 105, 20, 0.06) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    color: #3D2B0F;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

/* ---------- Main Container ---------- */
.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Logo ---------- */
.logo {
    width: 320px;
    max-width: 80vw;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 8px;
    filter: drop-shadow(0 4px 12px rgba(61, 43, 15, 0.3));
}

/* ---------- Decorative Divider ---------- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto;
    width: 280px;
    max-width: 80%;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to var(--dir, right), transparent, #C8A84B);
}

.divider::before { --dir: right; }
.divider::after  { --dir: left; }

.divider-icon {
    color: #C8A84B;
    font-size: 1.2rem;
    line-height: 1;
}

/* ---------- Typography ---------- */
.title {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    color: #8B6914;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.subtitle {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #6b5220;
    margin-bottom: 0.5rem;
}

.description {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1rem;
    color: #8a7448;
    letter-spacing: 0.04em;
}

/* ---------- Language Switcher ---------- */
.lang-switch {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: 1.5px solid #C8A84B;
    color: #8B6914;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
}

.lang-btn:hover,
.lang-btn.active {
    background-color: #C8A84B;
    color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
    .logo {
        width: 240px;
    }

    .title {
        font-size: 1.7rem;
    }

    .subtitle {
        font-size: 1.05rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .divider {
        width: 200px;
    }

    .lang-switch {
        top: 0.8rem;
        right: 0.8rem;
    }
}
