/* Header Styles */
.site-header {
    background: #fff;
    padding: 1rem 0;
    position: relative;
    z-index: 100;
    width: 100%;
}

.site-header .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 0 1.25rem;
    gap: 2rem;
}

.header-left {
    justify-self: start;
    min-width: 0;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: auto;
    white-space: nowrap;
}

.header-right {
    grid-column: 3;
    justify-self: end;
    min-width: 0;
    text-align: right;
    width: 100%;
}

.menu-text {
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    display: inline-block;
    text-align: right;
}

.page-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.custom-logo-link {
    display: inline-block;
    max-width: 200px;
}

.custom-logo-link img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

/* Responsive Header */
@media screen and (max-width: 48rem) {
    .site-header .container {
        padding: 0 0.9375rem;
    }
}

/* Mobile Navigation */
.mobile-nav-select {
    width: 100%;
    padding: 0.5rem;
    border: none;
    background-color: #ffffff;
    color: #333333;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.5em;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    display: none;
}

.dropdown-options.show {
    display: block;
}

.dropdown-options a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-options a:hover {
    background-color: #f5f5f5;
}

.dropdown-options a.active {
    background-color: #f0f0f0;
    font-weight: 500;
} 