/* ==========================================
   HEADER & FOOTER
   ========================================== */

/* Header */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    background-color: rgba(36, 37, 38, 0.75);
    backdrop-filter: blur(27px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    max-height: 50px;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo img {
    max-height: 50px;
    width: auto;
    height: auto;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F39200 0%, #E6177D 100%);
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #FFFFFF;
}

.logo-sub {
    font-size: 12px;
    color: #A7A9A9;
    letter-spacing: 0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #F39200;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-switcher-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #F39200;
}

.lang-switcher-btn svg {
    width: 16px;
    height: 16px;
}

.lang-switcher-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #242526;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-switcher:hover .lang-switcher-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #FFFFFF;
    transition: background-color 0.2s;
}

.lang-option:hover {
    background-color: rgba(243, 146, 0, 0.1);
}

.lang-option.active {
    background-color: rgba(243, 146, 0, 0.2);
}

.lang-code {
    font-weight: bold;
    font-size: 12px;
    color: #F39200;
    min-width: 30px;
}

.lang-name {
    flex: 1;
    margin-left: 12px;
    font-size: 14px;
}

.lang-option svg {
    width: 16px;
    height: 16px;
    color: #1DA538;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.site-footer {
    padding: 48px 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}