.header {
    background-color: transparent;
    color: white;
    padding: 0.75rem 0;
    font-size: 0.88rem;
    line-height: 1.25;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    font-family: 'AkruxLight', sans-serif;
    font-size: 1.88rem;
    font-weight: 700;
    line-height: 2.3;
    color: white;
    text-decoration: none;
    z-index: 1;
}

.logo {
    width: 100px;
    height: 100px;
    margin-left: -69px;
    margin-right: 16px;
    position: relative;
    top: -2px;
    z-index: -1;
}

.nav-menu {
    font-family: 'AkruxLight', sans-serif;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}

.nav-link:hover {
    color: #3B82F6;
}

.login-button {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    margin-left: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}

.login-button:hover {
    background-color: white;
    color: #374151;
}

body {
    margin: 0;
    padding: 0;
    background-image: url('https://pricewize.ai/wp-content/uploads/2024/12/21ffde57557a9e8b9896f435ca705794-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Hidden by default */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: #1a1a1a;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.close-menu {
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    padding: 0.5rem 0;
    display: block;
}

.mobile-nav-link:hover {
    color: #3B82F6;
}

/* Hamburger menu styling */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
}

.hamburger-menu .bar {
    width: 30px;
    height: 3px;
    background-color: white;
}

/* Show hamburger menu only on small screens */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
    }
}

.nav-menu,
.nav-link,
.login-button,
.mobile-nav-link {
    font-family: 'AkruxLight', sans-serif;
}
