/* Base styles */
.header-nav-wrapper {
    position: static;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    position: static;
    width: 100%;
    height: 100px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8f9fa 35%,
        #f1f3f5 65%,
        #ffffff 100%
    );
    display: flex;
    justify-content: center;
}

/* Remove scroll class styles */
header.scroll {
    position: static;
}

/* Pattern overlay */
header::before {
    display: none;
}

.header-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
    box-sizing: border-box;
}

/* Logo styling */
header img {
    width: 200px;
    height: auto;
    display: block;
}

header h1 {
    font-size: 15px;
    margin: 0;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    text-align: center;
    width: 100%;
}

/* Word styling */
.text-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 100%;
}

header h1 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInDownScale 0.8s ease-out forwards;
    white-space: nowrap;
    transform-origin: center;
}

/* Individual word animations */
header h1 .search {
    color: #2C3E50;
    font-weight: 600;
    animation-delay: 0.6s;
}

header h1 .arrow {
    color: #3498DB;
    font-weight: 700;
    font-size: 14px;
    opacity: 0;
    animation: fadeInDownScale 0.8s ease-out forwards;
    animation-delay: 1s;
}

header h1 .quote {
    color: #2C3E50;
    font-weight: 600;
    animation-delay: 1.4s;
}

header h1 .bind {
    color: #2C3E50;
    font-weight: 600;
    animation-delay: 2.2s;
}

/* Scale animation */
@keyframes fadeInDownScale {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1.5);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hover effects */
.text-container:hover span:not(.arrow) {
    color: #3498DB;
    transition: color 0.3s ease;
}

.text-container:hover .arrow {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

/* Main content padding */
main {
    padding-top: 0;
}

/* Option container spacing */
.option-container {
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    header {
        height: 95px;
    }
    
    main {
        padding-top: 0;
    }

    .header-container {
        max-width: 300px;
        margin: 0 auto;
        padding: 8px 0;
        gap: 2px;
    }

    header img {
        width: 180px;
    }

    header h1 {
        font-size: 14px;
    }
}

/* Navigation styling */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    background: white;
    border-bottom: 1px solid #eee;
    width: 100%;
}

nav a {
    color: #2C3E50;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0;
}

nav a:hover {
    background: #f0f7ff;
    color: #00449E;
    transform: translateY(-1px);
}

nav a.active {
    background: #00449E;
    color: white;
}

/* Remove the problematic nav positioning */
.header-nav-wrapper nav {
    width: 100%;
}

/* Add to existing header.css */
.exposure-header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}