/* ==================== HEADER PARKING NARANJA ==================== */

.new-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.new-header .top-bar {
    background: linear-gradient(90deg, #ff5a00 0%, #ff8c00 100%);
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.new-header .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.new-header .logo-original a {
    display: block;
}

.new-header .logo-original img {
    height: 50px;
    width: auto;
}

.new-header nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.new-header nav a {
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.new-header nav a:hover {
    color: #ff5a00;
}

.new-header nav a.active {
    color: #ff5a00;
    font-weight: 600;
}

.new-header nav a.active::after,
.new-header nav a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff5a00;
}

/* ==================== HEADER RESPONSIVE ==================== */

@media (max-width: 768px) {
    .new-header .top-bar {
        font-size: 11px;
        padding: 6px 15px;
    }
    
    .new-header .main-header {
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .new-header .logo-original img {
        height: 40px;
    }
    
    .new-header nav {
        gap: 20px;
        order: 3;
        width: 100%;
        justify-content: center;
        border-top: 1px solid #eee;
        padding-top: 12px;
    }
    
    .new-header nav a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .new-header .top-bar {
        font-size: 10px;
    }
    
    .new-header nav {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .new-header nav a {
        font-size: 12px;
    }
}
