.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 110px;
    flex: 1;
}

.logo-placeholder {
    width: 150px;
    height: 60px;
    border: 2px dashed rgba(203, 203, 203, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #CBCBCB;
    text-align: center;
    padding: 5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-47%);
}

.nav-column {
    display: contents;
    flex-direction: column;
    gap: 0px;
}

.nav-column a {
    font-family: 'Marcellus';
    color: #F2F2F2;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

.center-icons {
    margin-left: -75px;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    display: flex;
    gap: 0;
    align-items: center;
    z-index: 1001;
}

.icon-btn {
    background: transparent;
    border: 2px solid #F2F2F2;
    padding: 10px 7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:first-child {
    border-radius: 8px 0 0 8px;
    border-right: 1px solid #F2F2F2;
}

.icon-btn:last-child {
    border-radius: 0 8px 8px 0;
    border-left: 1px solid #F2F2F2;
}

.icon-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #F2F2F2;
    stroke-width: 2;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: flex-end;
}

.lang-btn {
    text-decoration: underline;
    font-family: 'Marcellus';
    background: transparent;
    border: none;
    color: #f2f2f2;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
}

.lang-btn::before {
    content: 'US';
}

.search-btn {
    font-family: 'Marcellus';
    background: transparent;
    border: none;
    color: #F2F2F2;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.search-icon {
    width: 18px;
    height: 18px;
}

.auth-links {
    display: flex;
    gap: 20px;
}

.auth-links a {
    font-family: 'Marcellus';
    color: #F2F2F2;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 2px;
}

.mobile-right {
    display: none;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    z-index: 2000;
    padding: 50px;
}

.mobile-overlay.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-close {
    position: absolute;
    top: 30px;
    right: 50px;
    background: transparent;
    border: none;
    color: #F2F2F2;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav a {
    color: #F2F2F2;
    text-decoration: none;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #CD8C52;
}

.demo-content {
    margin-top: -125px;
    background: #131414;
    padding: 50px;
    color: #202020;
    text-align: center;
}

.demo-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.demo-content p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

.logo-image {
    width: 35%;
}

/* ========== TABLET VIEW ========== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 10px 25px;
    }

    .right-section {
        gap: 25px;
    }
}

/* ========== MOBILE VIEW (1024px aur niche) ========== */
@media (max-width: 1024px) {
    .header {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .left-section {
        flex: 0 0 auto;
        gap: 0;
    }

    .logo-image {
        width: 140px;
        max-width: 140px;
    }

    .nav-menu {
        display: none;
    }

    .search-btn,
    .auth-links {
        display: none;
    }

    .right-section {
        display: none;
    }

    .center-icons {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
    }

    .mobile-right {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 0 0 auto;
    }

    .mobile-right .lang-btn {
        display: block;
        font-size: 16px;
    }

    .mobile-right .mobile-menu-btn {
        font-family: 'Marcellus';
        background: transparent;
        border: none;
        color: #CD8C52;
        font-size: 16px;
        text-transform: uppercase;
        cursor: pointer;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .icon-btn {
        padding: 8px 12px;
    }

    .icon-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ========== SMALL MOBILE VIEW (768px aur niche) ========== */
@media (max-width: 768px) {
    .header {
        padding: 12px 15px;
        position: relative;
    }

    .left-section {
        gap: 0;
    }

    .logo-image {
        width: 120px;
        max-width: 120px;
    }

    .logo-placeholder {
        width: 80px;
        height: 35px;
        font-size: 9px;
    }

    .center-icons {
        gap: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
    }

    .icon-btn {
        padding: 7px 10px;
    }

    .icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .mobile-right {
        gap: 15px;
    }

    .mobile-right .lang-btn {
        font-size: 14px;
    }

    .mobile-right .mobile-menu-btn {
        font-size: 14px;
    }
}

/* ========== EXTRA SMALL MOBILE (480px aur niche) ========== */
@media (max-width: 480px) {
    .header {
        padding: 10px 12px;
        position: relative;
    }

    .logo-image {
        width: 100px;
        max-width: 100px;
    }

    .center-icons {
        position: absolute;
        left: 85%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
    }

    .icon-btn {
        padding: 6px 8px;
    }

    .icon-btn svg {
        width: 16px;
        height: 16px;
    }

    .mobile-right {
        gap: 10px;
    }

    .mobile-right .lang-btn,
    .mobile-right .mobile-menu-btn {
        font-size: 13px;
    }
}