/**
 * layout/header.css — 컨테이너, 헤더, info-bar
 */

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    min-height: 100vh;
    padding-bottom: 20px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

header {
    background-color: var(--white);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 70px;
}

.logo-text {
    font-family: var(--font-family);
    font-size: 30px;
    font-weight: 800;
    color: var(--brown-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text .q-logo {
    color: burlywood;
    font-size: 32px;
    font-weight: 700;
    margin-left: 2px;
}

.header-left,
.header-right {
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-btn {
    width: 46px;
    height: 46px;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    color: var(--brown-dark);
    transition: all 0.2s;
}

.menu-btn:hover {
    background: #eee;
    transform: translateY(-1px);
}

.menu-btn:active {
    transform: translateY(1px);
}

/* Info Bar — 헤더 바로 아래 고정 */
.weather-info-bar {
    position: sticky;
    top: 70px;
    z-index: 99;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    font-size: 15px;
    color: #666;
    font-weight: 500;
    border-bottom: 1px solid #f0f1f5;
}

.weather-info-bar__location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.weather-info-bar__location i {
    color: #e9e8e8;
    font-size: 13px;
}