/* Логотип остается с Arial */
.header-logo svg text {
    font-family: Arial, sans-serif;
}

/* ========== HEADER STYLES ========== */

.header {
    width: 100%;
    padding: 0;
    background: #ffffff;
    transition: all 0.5s ease;
}

.header-container {
    width: 100%;
    padding: 15px 50px;
    background: #ffffff;
    border-radius: 0 0 30px 30px;
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo svg {
    width: 200px;
    height: auto;
    display: block;
}

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

/* Phone Button */
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    color: #333333;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-phone i {
    font-size: 20px;
    color: #856639;
    transition: all 0.3s ease;
}

.header-phone:hover {
    color: #856639;
}

.header-phone:hover i {
    transform: scale(1.1);
}

/* WhatsApp Button */
.header-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    color: #333333;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-whatsapp i {
    font-size: 24px;
    color: #25D366;
    transition: all 0.3s ease;
}

.header-whatsapp:hover {
    color: #25D366;
}

.header-whatsapp:hover i {
    transform: scale(1.1);
}
/* ========== BURGER MENU BUTTON ========== */
.burger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2500;
}

.burger-menu i {
    font-size: 35px;
    color: #856639;
    transition: opacity 0.3s ease;
}

/* ========== NAVIGATION MENU ========== */

.nav-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.nav-menu.active {
    max-height: 600px;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 50px 60px;
    display: flex;
    gap: 80px;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.5s ease 0.2s;
}

.nav-menu.active .nav-content {
    opacity: 1;
    transform: translateY(0);
}


/* Social Links */
.nav-social {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 5px;
    padding-top: 0;
    border-top: none;
    align-items: center;
}

.nav-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000; /* Изначально черные */
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #ffffff;
}

.nav-social a i {
    font-size: 18px;
}

/* При наведении - фирменные цвета */
.nav-social a[aria-label="Facebook"]:hover {
    background: #1877F2;
    color: #ffffff;
    border-color: #1877F2;
    transform: translateY(-3px);
}

.nav-social a[aria-label="Instagram"]:hover {
    background: #E4405F;
    color: #ffffff;
    border-color: #E4405F;
    transform: translateY(-3px);
}

.nav-social a[aria-label="WhatsApp"]:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
    transform: translateY(-3px);
}

.nav-social a[aria-label="YouTube"]:hover {
    background: #FF0000;
    color: #ffffff;
    border-color: #FF0000;
    transform: translateY(-3px);
}

/* ========== NAVIGATION MENU ========== */

.nav-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #ffffff;
}

.nav-menu.active {
    max-height: 500px;
    /* border-top: 2px solid #f8f6f0; */
}

.nav-content {
    width: 100%;
    padding: 40px 50px;
    display: flex;
    gap: 60px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease 0.1s;
}

.nav-menu.active .nav-content {
    opacity: 1;
    transform: translateY(0);
}


/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #666;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.lang-btn:hover {
    border-color: #856639;
    color: #856639;
}

.lang-btn.active {
    background: #856639;
    color: #fff;
    border-color: #856639;
}


/* ываываываываыва */
/* Navigation Links */
.nav-links {
    flex: 1;
    display: flex;
    gap: 40px;
}

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

.nav-column a {
    color: #333333;
    text-decoration: none;
    font-size: 25px;
    font-weight: 800;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

/* .nav-column a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #856639;
    transition: width 0.3s ease;
} */

.nav-column a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: #856639;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-column a:hover {
    color: #856639;
    /* padding-left: 10px; */
}

/* .nav-column a:hover::before {
    width: 100%;
} */

.nav-column a:hover::after {
    transform: scaleX(1);
}





/* Navigation Contacts */
.nav-contacts {
    width: 320px;
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-phones a {
    color: #333333;
    text-decoration: none;
    font-size: 25px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-phones a:hover {
    color: #856639;
}

.contact-addresses {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-address {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-address .city {
    color: #333333;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.contact-address .address {
    color: #666666;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

