/*
Theme Name: Reputation City Theme
Author: Taras Yurchyshyn
Author URI: https://www.linkedin.com/in/yurchyshyn/
Text Domain: reputation_city
Requires at least: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
*/

/* Tailwind output will be injected here or loaded separately */
html {
    scroll-behavior: smooth;
}

.swiper-button-disabled a {
    opacity: 0.5;
    cursor: default;
}

input:focus,
textarea:focus {
    outline: none;
}

/* Dropdown menu styles */
.header__list .sub-menu {
    z-index: 100;
}

.header__list .sub-menu .sub-menu {
    left: 100%;
    top: 0;
    margin-left: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.header__list .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
}

/* Mobile responsive - приховати dropdown на мобільних */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .header__mobile-btn {
        display: flex !important;
    }
}

/* Mobile menu button animation */
.header__mobile-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.header__mobile-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.header__mobile-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -5px);
}

/* Prevent body scroll when menu is open */
body.overflow-hidden {
    overflow: hidden;
}