/* Header Styles - oxnack-header */
.oxnack-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.oxnack-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.oxnack-logo img {
    height: auto;
    transition: transform 0.3s ease;
}

.oxnack-logo img:hover {
    transform: scale(1.05);
}

.oxnack-nav-desktop {
    display: none;
    align-items: center;
}

.oxnack-nav-item {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    margin: 0 12px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.oxnack-nav-item:hover {
    color: var(--primary-color);
}

.oxnack-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.oxnack-nav-item:hover::after {
    width: 100%;
}

.oxnack-nav-mobile {
    display: flex;
    align-items: center;
}

.oxnack-mobile-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
    padding: 5px 10px;
}

.oxnack-mobile-menu {
    display: none;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 999;
}

.oxnack-mobile-menu.oxnack-active {
    display: flex;
}

.oxnack-mobile-nav-item {
    padding: 12px 0;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--light-gray);
}

/* Footer Styles - oxnack-footer */
.oxnack-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.oxnack-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.oxnack-footer-about {
    max-width: 300px;
}

.oxnack-footer-logo img {
    max-width: 140px;
    margin-bottom: 20px;
}

.oxnack-footer-description {
    opacity: 0.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.oxnack-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.oxnack-social-links a {
    color: white;
    opacity: 0.7;
    font-size: 20px;
    transition: opacity 0.3s ease;
}

.oxnack-social-links a:hover {
    opacity: 1;
}

.oxnack-footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.oxnack-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.oxnack-footer-links ul {
    list-style: none;
}

.oxnack-footer-links li {
    margin-bottom: 12px;
}

.oxnack-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.oxnack-footer-link:hover {
    color: white;
}

.oxnack-footer-contacts ul {
    list-style: none;
}

.oxnack-footer-contacts li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.7;
}

.oxnack-footer-contacts a {
    color: white;
    text-decoration: none;
}

.oxnack-footer-contacts i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.oxnack-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.oxnack-footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.oxnack-legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.oxnack-legal-link:hover {
    color: white;
}

.oxnack-footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Responsive Header/Footer - oxnack-header-footer-responsive */
@media (min-width: 768px) {
    .oxnack-nav-desktop {
        display: flex;
    }
    
    .oxnack-nav-mobile {
        display: none;
    }
    
    .oxnack-mobile-menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .oxnack-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .oxnack-footer-about {
        max-width: 100%;
        text-align: center;
    }
    
    .oxnack-social-links {
        justify-content: center;
    }
    
    .oxnack-footer-legal {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}