:root {
    --primary: #FF9933;
    --white: #FFFFFF;
    --dark: #333333;
    --bg-light: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-light);
    top: 0 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.main-content {
    flex: 1;
}

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.site-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.lang-icon-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    padding: 5px;
}

.hamburger-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.hamburger-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

#site-header.header-scrolled {
    background-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#site-header.header-scrolled .site-title,
#site-header.header-scrolled .desktop-nav a {
    color: var(--white);
}

#site-header.header-scrolled .hamburger-toggle span {
    background-color: var(--white);
}

#site-header.header-scrolled .lang-icon-btn {
    color: var(--white);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--primary);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lang-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lang-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lang-modal-content {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 320px;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.lang-modal-overlay.active .lang-modal-content {
    transform: translateY(0);
}

.lang-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    line-height: 1;
}

.lang-modal-content h3 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.2rem;
}

.lang-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lang-option-btn {
    padding: 10px;
    border: 1px solid #ddd;
    background: #fafafa;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.lang-option-btn:hover {
    border-color: var(--primary);
    background: #fff3e6;
    color: var(--primary);
}

#site-footer {
    background-color: transparent;
    padding: 50px 0 30px 0;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
    background-color: #e68a2e;
}

.footer-copyright {
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-credit {
    color: var(--dark);
    font-size: 0.95rem;
}

.footer-credit a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.goog-te-banner-frame,
.skiptranslate,
.goog-te-gadget-icon,
#goog-gt-tt {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .desktop-nav {
        display: none;
    }
    .hamburger-toggle {
        display: flex;
    }
}