/* Stevie Wood Recovery - Header Styles */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(99, 102, 241, 0);
    padding: 15px 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

header nav {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

header.scrolled nav {
    opacity: 1;
    visibility: visible;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header-logo-container {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.header-logo-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .primary {
    font-size: 22px;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-text .secondary {
    font-size: 12px;
    font-weight: 300;
    color: #64748b;
    letter-spacing: 4px;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-left: auto;
}

nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffffff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #f1f5f9;
    font-size: 26px;
    cursor: pointer;
}
