.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 999;
    height: 60px;
}

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

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 20px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #222;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

.site-title {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}

.site-title a {
    color: #222;
    text-decoration: none;
}

.search-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #222;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.side-menu.active {
    left: 0;
}

.menu-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    color: #222;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    border-bottom: 1px solid #f0f0f0;
}

.menu-list a {
    display: block;
    padding: 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
}

.menu-list a:hover {
    background: #f8f8f8;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.menu-overlay.active {
    display: block;
}

body {
    padding-top: 60px;
}

.main-container {
    padding-top: 20px;
}

.gallery-title {
    display: none;
}

.search-container {
    display: none;
}
