:root {
    --bg: #f7f4ef;
    --accent-gold: #c8a86f;
    --text: #402614;
    --muted: rgba(64, 38, 20, 0.6);
}

/* Body */
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--bg);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Center container */
.lang-container {
    background: #fff;
    padding: 60px 70px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    text-align: center;
    max-width: 650px;
    width: 95%;
    border: 3px solid var(--accent-gold);
}

/* Title */
.lang-container h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text);
}

/* Buttons container */
.lang-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Buttons */
.lang-btn {
    background: linear-gradient(180deg, #eadfbf, #e4d6ba);
    border: 3px solid var(--accent-gold);
    color: var(--text);
    font-size: 2rem;
    font-weight: bold;
    padding: 24px 40px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 260px;
}

.lang-btn:hover {
    background: linear-gradient(180deg, #f2e8c9, #eaddb9);
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(200, 168, 111, 0.3);
}

/* Flags inside button */
.lang-btn .fi {
    margin-right: 12px;
    font-size: 2rem; /* bigger flag icons */
}

