/*
Theme Name: Company Theme
Theme URI: https://example.com/
Author: Vertex Team
Description: Classic WordPress theme converted from the Vertex Vite/React build.
Version: 1.0.0
Text Domain: company-theme
*/

.contact-status {
    margin: 0 0 14px;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 600;
}

.contact-status--success {
    background: #ecfdf3;
    color: #027a48;
}

.contact-status--error,
.contact-status--missing,
.contact-status--invalid {
    background: #fff1f1;
    color: #b42318;
}

/* Simple language dropdown */
.lang-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-switch .lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 120%;
    background: var(--card, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 8px;
    padding: 6px 0;
    margin: 6px 0 0 0;
    list-style: none !important;
    min-width: 120px;
    z-index: 80;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    background: #fff;
}

.lang-switch .lang-menu li a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: inherit;
}

.lang-switch .lang-menu li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.lang-switch .lang-menu li.active a {
    font-weight: 700;
}

.lang-switch:hover .lang-menu,
.lang-switch:focus-within .lang-menu,
.lang-switch.open .lang-menu {
    display: block;
}

.lang-switch.mobile .lang-menu {
    position: static;
    display: block;
    padding: 10px 0 0 0;
    box-shadow: none;
    background: transparent;
}

.lang-switch.mobile .lang-menu li a {
    padding: 8px 10px;
}
