@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

/* Hub Specific Styles - Mobile Card Layout */

/* Override the Arch to be a Rectangle for Hubs */
.arch-container {
    border-radius: 24px !important;
    /* Square with slight rounded corners */
    margin-top: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.arch-container::before {
    opacity: 1 !important;
    /* Absolute black + Blend Mode to "kill" any remaining brightness */
    filter: brightness(0) contrast(1000%);
    mix-blend-mode: multiply;
    /* This will make it blend much darker with the beige */

    /* Adding drop-shadow to "thicken" the lines, making them effectively 1000x more visible */
    filter: brightness(0) contrast(1000%) drop-shadow(0px 0px 0.5px black) drop-shadow(0px 0px 0.5px black);

    background-size: 115% auto !important;
    background-position: center -50px !important;
}

/* Re-defining necessary variables if style.css isn't present,
   but ideally this file is loaded AFTER style.css which defines :root */

.language-selection {
    /* Semi-Transparent Cream Card */
    background-color: rgba(247, 234, 219, 0.9);
    /* Slightly transparent cream (#f7eadb) */
    border-radius: 24px;
    /* Slightly tighter rounded corners */
    padding: 40px 30px;
    margin: 20px auto;

    /* Stronger shadow for depth */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;

    width: 90%;
    max-width: 340px;
    /* Mobile width */
}

/* Center the card vertically in the view */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    /* Ensure full height centering */
}

.hub-title {
    font-family: 'Roboto', sans-serif;
    /* Changed to Roboto per user request */
    color: var(--color-primary);
    text-align: center;
    font-size: 32px;
    /* Adjusted size */
    font-weight: 900;
    /* Extra thick (Black) weight */
    line-height: 1.1;
    /* Tighter line height for titles */
    margin-bottom: 10px;
    /* Brought even closer to labels */
    letter-spacing: -0.5px;
    text-transform: none;
    /* Keep natural casing for business look */
}

.lang-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.language-label {
    font-family: 'Roboto', sans-serif;
    color: #000000;
    /* Black as requested */
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: none;
}

.lang-btn {
    /* Professional Solid Button */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;

    padding: 18px 24px;
    background-color: var(--color-primary);
    /* Dark Blue */
    color: #ffffff;
    /* White text */

    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;

    border-radius: 12px;
    /* Professional rounded square look */
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background-color: #3e3e84;
    /* Slightly lighter blue */
}

.lang-btn:active {
    transform: scale(0.98);
}