/* Stremize Header Custom CSS */
.stz-header {
    /* background: #181824; */
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    position: relative;
    z-index: 50;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
    width: 100%;
}
.stz-header__container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 32px; */
    height: 72px;
    box-sizing: border-box;
}
.stz-header__logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
}
.stz-header__logo img {
    height: 36px;
    margin-right: 8px;
}
.stz-header__logo-accent {
    color: #EF7D35;
}
.stz-header__nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}
.stz-header__nav a {
    color: #fff;
    text-decoration: none;
    /* font-weight: 500; */
    font-size: 1.25rem;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.stz-header__nav a.active,
.stz-header__nav a:hover {
    color: #EF7D35;
    border-bottom: 2px solid #EF7D35;
}
.stz-header__auth {
    display: flex;
    align-items: center;
    gap: 16px;
}
.stz-header__login {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}
.stz-header__login:hover {
    color: #EF7D35;
}
.stz-header__signup {
    background: linear-gradient(90deg, #EF7D35 0%, #ffd740 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: 8px 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px 0 rgba(255,152,0,0.15);
    transition: background 0.2s;
    font-size: 1rem;
}
.stz-header__signup:hover {
    background: linear-gradient(90deg, #ffb74d 0%, #ffe082 100%);
}
.stz-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 16px;
}
.stz-header__hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.2s;
}
.stz-header__mobile-menu {
    display: none;
    position: absolute;
    top: 72px;
    right: 0;
    width: 220px;
    background: #23233a;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 24px 0 rgba(0,0,0,0.18);
    z-index: 100;
    padding: 24px 0 12px 0;
    animation: stz-fade-in 0.2s;
}
.stz-header__mobile-menu.open {
    display: block;
}
.stz-header__mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 24px;
}
.stz-header__mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid #2d2d44;
    transition: color 0.2s;
}
.stz-header__mobile-menu a.active,
.stz-header__mobile-menu a:hover {
    color: #EF7D35;
}
.stz-header__auth-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 24px 0 24px;
}
.stz-header__auth-mobile .stz-header__signup {
    text-align: center;
    margin-top: 4px;
}
.stz-header__user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 24px;
    padding: 6px 18px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    outline: none;
}
.stz-header__user-btn:hover, .stz-header__user-btn:focus {
    border-color: #EF7D35;
    color: #EF7D35;
}
header .navbar-brand img.logo {
    height: 3.25rem;
    max-height: 3.25rem;
}
.navbar-brand {
    padding: 0.75rem 0px;
}
@media (max-width: 1024px) {
    .stz-header__container {
        padding: 0 12px;
    }
    .stz-header__nav {
        gap: 18px;
    }
}
@media (max-width: 767px) {
    .stz-header__nav,
    .stz-header__auth {
        display: none !important;
    }
    .stz-header__hamburger {
        display: flex;
    }
    .stz-header__container {
        padding: 0 8px;
    }
}
@keyframes stz-fade-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
} 