/* Navigation */
nav {
    --nav-height: 76.8px; /* This accounts for padding (16px top + 16px bottom) + content height (44.8px) */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background-color: rgba(10, 10, 10, 0.8);
    position: fixed;
    width: 100%;
    top: var(--wp-admin--admin-bar--height, 0px);
    left: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: transform 0.3s ease-in-out;
    height: var(--nav-height);
    box-sizing: border-box;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

@media screen and (max-width: 782px) {
    nav {
        top: var(--wp-admin--admin-bar--height, 0px);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 44.8px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.logo span {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.log-in {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.log-in:hover {
    color: rgba(255, 255, 255, 0.8);
}

.get-started {
    background-color: #FF1B8D;
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.get-started:hover {
    transform: translateY(-2px);
    background-color: transparent;
    color: #fff;
    border: 2px solid #FF1B8D;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-right {
        position: static;
        height: auto;
        width: auto;
        background-color: transparent;
        flex-direction: row;
        justify-content: flex-end;
        transition: none;
    }

    .nav-right.active {
        right: 0;
    }

    .log-in {
        display: none;
    }

    .get-started {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Add margin to main content to account for fixed nav */
main,
.page-content {
    margin-top: calc(var(--nav-height) + var(--wp-admin--admin-bar--height, 0px));
    position: relative;
} 