/* Header Component - Angela Tourism */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1020;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-toggle {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.15s ease;
}

.menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: #2C3E50;
    transition: all 0.15s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.site-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FF6B35;
    margin: 0;
}

.language-toggle,
.location-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.language-toggle:hover,
.location-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.flag-emoji {
    font-size: 1.125rem;
}

.lang-code {
    font-size: 0.875rem;
    font-weight: 600;
    color: #7F8C8D;
}

.location-btn svg {
    width: 20px;
    height: 20px;
    color: #7F8C8D;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 0 0.75rem;
    }
    
    .site-title {
        font-size: 1.125rem;
    }
}
