.wp-site-blocks,
.is-root-container,
.entry-content,
.wp-block-post-content {
    overflow: visible !important;
}

.banner {
    background-color: #181815;
    padding: 16px 24px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.navigation {
    background-color: #fffdf0cc;
    -webkit-backdrop-filter: blur(17px) brightness(100%);
    backdrop-filter: blur(17px) brightness(100%);
    padding: 8px 0;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0;
    z-index: 9999 !important;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.admin-bar .navigation {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .navigation {
        top: 46px;
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 60px;
}

.logo-container {
    width: 100px;
    height: 72px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    height: 100%;
}

.desktop-nav .primary-menu,
.desktop-nav .menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav a,
.nav-link {
    font-family: "Onest", Helvetica;
    font-weight: 600;
    color: #1c1c1c;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 8px 0;
}

.desktop-nav a:hover,
.nav-link:hover {
    color: #009cbc;
}

.desktop-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    height: 100%;
}

.signup-button {
    background-color: #98e8e9;
    border-radius: 20px;
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.signup-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(152, 232, 233, 0.3);
}

.button-text {
    font-family: "Onest", Helvetica;
    font-weight: 600;
    color: #1c1c1c;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    height: 100%;
    margin-left: auto;
}

.mobile-signup {
    padding: 8px 16px;
}

.mobile-signup .button-text {
    font-size: 14px;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: #1c1c1c;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu-content {
    background-color: #fffdf0;
    width: 280px;
    height: 100%;
    position: relative;
    right: -100%;
    transition: right 0.3s ease;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    margin-left: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.mobile-nav .mobile-nav-menu,
.mobile-nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-link,
.mobile-nav a {
    font-family: "Onest", Helvetica;
    font-weight: 600;
    color: #1c1c1c;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: color 0.2s ease;
    display: block;
}

.mobile-nav-link:hover,
.mobile-nav a:hover {
    color: #009cbc;
}

.mobile-user-section {
    border-top: 1px solid #e5e5e5;
    padding-top: 24px;
}

.mobile-user-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Onest", Helvetica;
    font-weight: 600;
    color: #1c1c1c;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.2s ease;
}

.mobile-user-link:hover {
    color: #009cbc;
}

.mobile-user-icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
        gap: 16px;
    }

    .logo-container {
        width: 80px;
        height: 58px;
    }

    .desktop-nav,
    .desktop-actions {
        display: none;
    }

    .mobile-actions {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }

    .logo-container {
        width: 70px;
        height: 50px;
    }

    .mobile-signup {
        padding: 6px 12px;
    }

    .mobile-signup .button-text {
        font-size: 12px;
    }
}
