/* Nienow Classic: additional styles */

/* Responsive utilities */
@media (max-width: 991px) {
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .hide-mobile {
        display: block !important;
    }
    
    .show-mobile {
        display: none !important;
    }
}

/* Service accordion */
.service-item {
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-toggle {
    transition: all 0.3s ease;
}

.service-toggle:hover {
    background-color: #f9fafb;
}

.service-content {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form focus */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #957859;
    box-shadow: 0 0 0 3px rgba(149, 120, 89, 0.1);
}

/* Card hover */
.card:hover img {
    transform: scale(1.05);
}

/* Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Loading */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Screen reader */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Admin bar */
#wpadminbar {
    z-index: 99999;
}

.site-header {
    z-index: 1000;
}

/* Admin bar fixed */
body.admin-bar #wpadminbar {
    position: fixed;
    top: 0;
}

/* Language switcher (mobile) */
@media (max-width: 991px) {
    .nienow-lang-switcher-parent .sub-menu,
    .main-navigation .pll-parent-menu-item .sub-menu {
        right: auto;
        left: 0;
    }
}

/* Print */
@media print {
    .site-header,
    .site-footer,
    .btn,
    .menu-toggle {
        display: none;
    }
}
