/* ===========================================
   HEADER — Navigation, Hamburger, Phone
   =========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

.logo img {
    height: 60px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #d4af37;
}

.phone {
    color: #d4af37;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #d4af37;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s;
}

.phone:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.phone-mobile {
    display: none;
}

.phone-desktop {
    display: inline-block;
}
